| 1 | package com.soops.CEN4010.JMCA.JParser; | |
| 2 | ||
| 3 | /* Generated By:JJTree&JavaCC: Do not edit this line. JavaParser.java */ | |
| 4 | ||
| 5 | ||
| 6 | import java.io.*; | |
| 7 | ||
| 8 | ||
| 9 | /** | |
| 10 | * Grammar to parse Java version 1.5 | |
| 11 | * @author Sreenivasa Viswanadha - Simplified and enhanced for 1.5 | |
| 12 | */ | |
| 13 | public class JavaParser /*@bgen(jjtree)*/ | |
| 14 | implements JavaParserTreeConstants, JavaParserConstants { | |
| 15 | /*@bgen(jjtree)*/ | |
| 16 |
6
1. 2. 3. 4. 5. 6. |
JJTJavaParserState jjtree = new JJTJavaParserState(); /** |
| 17 | * Class to hold modifiers. | |
| 18 | */ | |
| 19 | ||
| 20 | /** | |
| 21 | * currNode is the current node of the tree - it is set in simplenode | |
| 22 | * has package access fro ease of use | |
| 23 | */ | |
| 24 |
3
1. 2. 3. |
Node currNode = null; |
| 25 | ||
| 26 | // << to do >> cleasn up the remarked out code | |
| 27 | /** | |
| 28 | * nodeIsSet is a flag used to determine which token string value to use | |
| 29 | */ | |
| 30 | // boolean nodeIsSet = false; | |
| 31 | // public void setNode(boolean condition) { | |
| 32 | // nodeIsSet = condition; | |
| 33 | // } | |
| 34 | ||
| 35 | static public final class ModifierSet { | |
| 36 | /* Definitions of the bits in the modifiers field. */ | |
| 37 | public static final int PUBLIC = 0x0001; | |
| 38 | public static final int PROTECTED = 0x0002; | |
| 39 | public static final int PRIVATE = 0x0004; | |
| 40 | public static final int ABSTRACT = 0x0008; | |
| 41 | public static final int STATIC = 0x0010; | |
| 42 | public static final int FINAL = 0x0020; | |
| 43 | public static final int SYNCHRONIZED = 0x0040; | |
| 44 | public static final int NATIVE = 0x0080; | |
| 45 | public static final int TRANSIENT = 0x0100; | |
| 46 | public static final int VOLATILE = 0x0200; | |
| 47 | public static final int STRICTFP = 0x1000; | |
| 48 | ||
| 49 | /** A set of accessors that indicate whether the specified modifier | |
| 50 | is in the set. */ | |
| 51 | ||
| 52 | public boolean isPublic(int modifiers) { | |
| 53 | return (modifiers & PUBLIC) != 0; | |
| 54 | } | |
| 55 | ||
| 56 | public boolean isProtected(int modifiers) { | |
| 57 | return (modifiers & PROTECTED) != 0; | |
| 58 | } | |
| 59 | ||
| 60 | public boolean isPrivate(int modifiers) { | |
| 61 | return (modifiers & PRIVATE) != 0; | |
| 62 | } | |
| 63 | ||
| 64 | public boolean isStatic(int modifiers) { | |
| 65 | return (modifiers & STATIC) != 0; | |
| 66 | } | |
| 67 | ||
| 68 | public boolean isAbstract(int modifiers) { | |
| 69 | return (modifiers & ABSTRACT) != 0; | |
| 70 | } | |
| 71 | ||
| 72 | public boolean isFinal(int modifiers) { | |
| 73 | return (modifiers & FINAL) != 0; | |
| 74 | } | |
| 75 | ||
| 76 | public boolean isNative(int modifiers) { | |
| 77 | return (modifiers & NATIVE) != 0; | |
| 78 | } | |
| 79 | ||
| 80 | public boolean isStrictfp(int modifiers) { | |
| 81 | return (modifiers & STRICTFP) != 0; | |
| 82 | } | |
| 83 | ||
| 84 | public boolean isSynchronized(int modifiers) { | |
| 85 | return (modifiers & SYNCHRONIZED) != 0; | |
| 86 | } | |
| 87 | ||
| 88 | public boolean isTransient(int modifiers) { | |
| 89 | return (modifiers & TRANSIENT) != 0; | |
| 90 | } | |
| 91 | ||
| 92 | public boolean isVolatile(int modifiers) { | |
| 93 | return (modifiers & VOLATILE) != 0; | |
| 94 | } | |
| 95 | ||
| 96 | /** | |
| 97 | * Removes the given modifier. | |
| 98 | */ | |
| 99 | static int removeModifier(int modifiers, int mod) { | |
| 100 | return modifiers & ~mod; | |
| 101 | } | |
| 102 | } | |
| 103 | ||
| 104 | ||
| 105 | public JavaParser(String fileName) { | |
| 106 | this(System.in); | |
| 107 | try { | |
| 108 |
3
1. 2. 3. |
ReInit(new FileInputStream(new File(fileName))); |
| 109 | } catch (Exception e) { | |
| 110 |
1
1. |
e.printStackTrace(); |
| 111 | } | |
| 112 | } | |
| 113 | public void dump (Writer wtr) { | |
| 114 | try { | |
| 115 |
2
1. dump : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::dump → SURVIVED 2. dump : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::rootNode → KILLED |
((SimpleNode)this.jjtree.rootNode()).dump("root", wtr); |
| 116 |
2
1. dump : removed call to java/io/IOException::getMessage → SURVIVED 2. dump : removed call to java/io/PrintStream::println → SURVIVED |
} catch (IOException ie) {System.err.println(ie.getMessage()); } |
| 117 | } | |
| 118 | public static void main(String args[]) { | |
| 119 | JavaParser parser = null; | |
| 120 | // Writer wtr = new java.io.PrintWriter(System.out); | |
| 121 |
3
1. main : negated conditional → KILLED 2. main : removed conditional - replaced equality check with false → KILLED 3. main : removed conditional - replaced equality check with true → KILLED |
if (args.length == 0) { |
| 122 |
1
1. main : removed call to java/io/PrintStream::println → SURVIVED |
System.out.println( |
| 123 | "Java Parser Version 1.1: Reading from standard input . . ."); | |
| 124 |
1
1. main : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::<init> → KILLED |
parser = new JavaParser(System.in); |
| 125 |
4
1. main : Substituted 1 with 0 → KILLED 2. main : negated conditional → KILLED 3. main : removed conditional - replaced equality check with false → KILLED 4. main : removed conditional - replaced equality check with true → KILLED |
} else if (args.length == 1) { |
| 126 | // System.out.println("Java Parser Version 1.1: Reading from file " + | |
| 127 | // args[0] + " . . ."); | |
| 128 | try { | |
| 129 |
3
1. main : removed call to java/io/FileInputStream::<init> → KILLED 2. main : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::<init> → KILLED 3. main : Substituted 0 with 1 → KILLED |
parser = new JavaParser(new java.io.FileInputStream(args[0])); |
| 130 | } catch (java.io.FileNotFoundException e) { | |
| 131 |
10
1. main : removed call to java/lang/StringBuilder::<init> → NO_COVERAGE 2. main : Substituted 0 with 1 → NO_COVERAGE 3. main : removed call to java/lang/StringBuilder::append → NO_COVERAGE 4. main : removed call to java/lang/StringBuilder::append → NO_COVERAGE 5. main : removed call to java/lang/StringBuilder::append → NO_COVERAGE 6. main : removed call to java/lang/StringBuilder::toString → NO_COVERAGE 7. main : removed call to java/io/PrintStream::println → NO_COVERAGE 8. main : replaced call to java/lang/StringBuilder::append with receiver → NO_COVERAGE 9. main : replaced call to java/lang/StringBuilder::append with receiver → NO_COVERAGE 10. main : replaced call to java/lang/StringBuilder::append with receiver → NO_COVERAGE |
System.out.println("Java Parser Version 1.1: File " + args[0] + |
| 132 | " not found."); | |
| 133 | return; | |
| 134 | } | |
| 135 | ||
| 136 | } else { | |
| 137 |
1
1. main : removed call to java/io/PrintStream::println → SURVIVED |
System.out.println("Java Parser Version 1.1: Usage is one of:"); |
| 138 |
1
1. main : removed call to java/io/PrintStream::println → SURVIVED |
System.out.println(" java JavaParser < inputfile"); |
| 139 |
1
1. main : removed call to java/io/PrintStream::println → SURVIVED |
System.out.println("OR"); |
| 140 |
1
1. main : removed call to java/io/PrintStream::println → SURVIVED |
System.out.println(" java JavaParser inputfile"); |
| 141 | return; | |
| 142 | } | |
| 143 | try { | |
| 144 |
1
1. main : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::CompilationUnit → KILLED |
parser.CompilationUnit(); |
| 145 |
1
1. main : removed call to java/io/PrintWriter::<init> → KILLED |
Writer wtr = new PrintWriter(System.out); |
| 146 |
1
1. main : removed call to java/io/Writer::write → SURVIVED |
wtr.write("<?xml version='1.0' encoding='ISO-8859-1' ?>"); |
| 147 |
2
1. main : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::dump → SURVIVED 2. main : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::rootNode → KILLED |
((SimpleNode) parser.jjtree.rootNode()).dump("root", wtr ); |
| 148 | // System.out.println( | |
| 149 | // "Java Parser Version 1.1: Java program parsed successfully."); | |
| 150 | } catch (ParseException e) { | |
| 151 |
2
1. main : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::getMessage → NO_COVERAGE 2. main : removed call to java/io/PrintStream::println → NO_COVERAGE |
System.out.println(e.getMessage()); |
| 152 |
1
1. main : removed call to java/io/PrintStream::println → NO_COVERAGE |
System.out.println( |
| 153 | "Java Parser Version 1.1: Encountered errors during parse."); | |
| 154 | } catch (IOException ie) {} | |
| 155 | } | |
| 156 | ||
| 157 | /***************************************** | |
| 158 | * THE JAVA LANGUAGE GRAMMAR STARTS HERE * | |
| 159 | *****************************************/ | |
| 160 | ||
| 161 | /* | |
| 162 | * Program structuring syntax follows. | |
| 163 | */ | |
| 164 | final public void CompilationUnit() throws ParseException { | |
| 165 | /*@bgen(jjtree) CompilationUnit */ | |
| 166 |
2
1. CompilationUnit : Substituted 0 with 1 → SURVIVED 2. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCOMPILATIONUNIT); |
| 167 |
1
1. CompilationUnit : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 168 |
1
1. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 169 | try { | |
| 170 |
7
1. CompilationUnit : Substituted -1 with 0 → SURVIVED 2. CompilationUnit : negated conditional → SURVIVED 3. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. CompilationUnit : removed conditional - replaced equality check with false → SURVIVED 5. CompilationUnit : removed conditional - replaced equality check with true → SURVIVED 6. CompilationUnit : RemoveSwitch 0 mutation → SURVIVED 7. CompilationUnit : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 171 | case PACKAGE: | |
| 172 |
1
1. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PackageDeclaration → NO_COVERAGE |
PackageDeclaration(); |
| 173 | break; | |
| 174 | default: | |
| 175 | ; | |
| 176 | } | |
| 177 | label_1:while (true) { | |
| 178 |
7
1. CompilationUnit : Substituted -1 with 0 → SURVIVED 2. CompilationUnit : negated conditional → SURVIVED 3. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. CompilationUnit : removed conditional - replaced equality check with false → SURVIVED 5. CompilationUnit : removed conditional - replaced equality check with true → SURVIVED 6. CompilationUnit : RemoveSwitch 0 mutation → SURVIVED 7. CompilationUnit : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 179 | case IMPORT: | |
| 180 | ; | |
| 181 | break; | |
| 182 | default: | |
| 183 | break label_1; | |
| 184 | } | |
| 185 |
1
1. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ImportDeclaration → NO_COVERAGE |
ImportDeclaration(); |
| 186 | } | |
| 187 | label_2:while (true) { | |
| 188 |
22
1. CompilationUnit : Substituted -1 with 0 → SURVIVED 2. CompilationUnit : negated conditional → SURVIVED 3. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. CompilationUnit : removed conditional - replaced equality check with false → SURVIVED 5. CompilationUnit : removed conditional - replaced equality check with true → SURVIVED 6. CompilationUnit : RemoveSwitch 0 mutation → SURVIVED 7. CompilationUnit : RemoveSwitch 1 mutation → SURVIVED 8. CompilationUnit : RemoveSwitch 10 mutation → SURVIVED 9. CompilationUnit : RemoveSwitch 11 mutation → SURVIVED 10. CompilationUnit : RemoveSwitch 12 mutation → SURVIVED 11. CompilationUnit : RemoveSwitch 13 mutation → SURVIVED 12. CompilationUnit : RemoveSwitch 14 mutation → SURVIVED 13. CompilationUnit : RemoveSwitch 15 mutation → SURVIVED 14. CompilationUnit : RemoveSwitch 2 mutation → SURVIVED 15. CompilationUnit : RemoveSwitch 3 mutation → SURVIVED 16. CompilationUnit : RemoveSwitch 4 mutation → SURVIVED 17. CompilationUnit : RemoveSwitch 5 mutation → SURVIVED 18. CompilationUnit : RemoveSwitch 6 mutation → SURVIVED 19. CompilationUnit : RemoveSwitch 7 mutation → SURVIVED 20. CompilationUnit : RemoveSwitch 8 mutation → SURVIVED 21. CompilationUnit : RemoveSwitch 9 mutation → SURVIVED 22. CompilationUnit : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 189 | case ABSTRACT: | |
| 190 | case CLASS: | |
| 191 | case ENUM: | |
| 192 | case FINAL: | |
| 193 | case INTERFACE: | |
| 194 | case NATIVE: | |
| 195 | case PRIVATE: | |
| 196 | case PROTECTED: | |
| 197 | case PUBLIC: | |
| 198 | case STATIC: | |
| 199 | case STRICTFP: | |
| 200 | case SYNCHRONIZED: | |
| 201 | case TRANSIENT: | |
| 202 | case VOLATILE: | |
| 203 | case SEMICOLON: | |
| 204 | case AT: | |
| 205 | ; | |
| 206 | break; | |
| 207 | default: | |
| 208 | break label_2; | |
| 209 | } | |
| 210 |
1
1. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeDeclaration → NO_COVERAGE |
TypeDeclaration(); |
| 211 | } | |
| 212 |
2
1. CompilationUnit : Substituted 0 with 1 → SURVIVED 2. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(0); |
| 213 | } catch (Throwable jjte000) { | |
| 214 |
3
1. CompilationUnit : removed conditional - replaced equality check with true → SURVIVED 2. CompilationUnit : negated conditional → KILLED 3. CompilationUnit : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 215 |
1
1. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 216 |
1
1. CompilationUnit : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 217 | } else { | |
| 218 |
1
1. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 219 | } | |
| 220 |
3
1. CompilationUnit : removed conditional - replaced equality check with true → SURVIVED 2. CompilationUnit : negated conditional → KILLED 3. CompilationUnit : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 221 | { | |
| 222 | if (true) { | |
| 223 | throw (RuntimeException) jjte000; | |
| 224 | } | |
| 225 | } | |
| 226 | } | |
| 227 |
3
1. CompilationUnit : negated conditional → SURVIVED 2. CompilationUnit : removed conditional - replaced equality check with false → SURVIVED 3. CompilationUnit : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 228 | { | |
| 229 | if (true) { | |
| 230 | throw (ParseException) jjte000; | |
| 231 | } | |
| 232 | } | |
| 233 | } | |
| 234 | { | |
| 235 | if (true) { | |
| 236 | throw (Error) jjte000; | |
| 237 | } | |
| 238 | } | |
| 239 | } finally { | |
| 240 |
6
1. CompilationUnit : removed conditional - replaced equality check with false → SURVIVED 2. CompilationUnit : removed conditional - replaced equality check with true → SURVIVED 3. CompilationUnit : negated conditional → KILLED 4. CompilationUnit : negated conditional → KILLED 5. CompilationUnit : removed conditional - replaced equality check with false → KILLED 6. CompilationUnit : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 241 |
4
1. CompilationUnit : Substituted 1 with 0 → SURVIVED 2. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 3. CompilationUnit : Substituted 1 with 0 → KILLED 4. CompilationUnit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → KILLED |
jjtree.closeNodeScope(jjtn000, true); |
| 242 | } | |
| 243 | } | |
| 244 | } | |
| 245 | ||
| 246 | final public void PackageDeclaration() throws ParseException { | |
| 247 | /*@bgen(jjtree) PackageDeclaration */ | |
| 248 |
2
1. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. PackageDeclaration : Substituted 1 with 0 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTPACKAGEDECLARATION); |
| 249 |
1
1. PackageDeclaration : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 250 |
1
1. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 251 | try { | |
| 252 |
2
1. PackageDeclaration : Substituted 46 with 47 → NO_COVERAGE 2. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(PACKAGE); |
| 253 |
1
1. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → NO_COVERAGE |
Name(); |
| 254 |
2
1. PackageDeclaration : Substituted 83 with 84 → NO_COVERAGE 2. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 255 | } catch (Throwable jjte000) { | |
| 256 |
3
1. PackageDeclaration : negated conditional → NO_COVERAGE 2. PackageDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. PackageDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 257 |
1
1. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 258 |
1
1. PackageDeclaration : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 259 | } else { | |
| 260 |
1
1. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 261 | } | |
| 262 |
3
1. PackageDeclaration : negated conditional → NO_COVERAGE 2. PackageDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. PackageDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 263 | { | |
| 264 | if (true) { | |
| 265 | throw (RuntimeException) jjte000; | |
| 266 | } | |
| 267 | } | |
| 268 | } | |
| 269 |
3
1. PackageDeclaration : negated conditional → NO_COVERAGE 2. PackageDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. PackageDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 270 | { | |
| 271 | if (true) { | |
| 272 | throw (ParseException) jjte000; | |
| 273 | } | |
| 274 | } | |
| 275 | } | |
| 276 | { | |
| 277 | if (true) { | |
| 278 | throw (Error) jjte000; | |
| 279 | } | |
| 280 | } | |
| 281 | } finally { | |
| 282 |
6
1. PackageDeclaration : negated conditional → NO_COVERAGE 2. PackageDeclaration : negated conditional → NO_COVERAGE 3. PackageDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 4. PackageDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. PackageDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. PackageDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 283 |
4
1. PackageDeclaration : Substituted 1 with 0 → NO_COVERAGE 2. PackageDeclaration : Substituted 1 with 0 → NO_COVERAGE 3. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. PackageDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 284 | } | |
| 285 | } | |
| 286 | } | |
| 287 | ||
| 288 | final public void ImportDeclaration() throws ParseException { | |
| 289 | /*@bgen(jjtree) ImportDeclaration */ | |
| 290 |
2
1. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ImportDeclaration : Substituted 2 with 3 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTIMPORTDECLARATION); |
| 291 |
1
1. ImportDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 292 |
1
1. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 293 | try { | |
| 294 |
2
1. ImportDeclaration : Substituted 38 with 39 → SURVIVED 2. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IMPORT); |
| 295 |
7
1. ImportDeclaration : Substituted -1 with 0 → SURVIVED 2. ImportDeclaration : negated conditional → SURVIVED 3. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ImportDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. ImportDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. ImportDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. ImportDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 296 | case STATIC: | |
| 297 |
2
1. ImportDeclaration : Substituted 52 with 53 → NO_COVERAGE 2. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(STATIC); |
| 298 | break; | |
| 299 | default: | |
| 300 | ; | |
| 301 | } | |
| 302 |
1
1. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → NO_COVERAGE |
Name(); |
| 303 |
7
1. ImportDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ImportDeclaration : negated conditional → NO_COVERAGE 3. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ImportDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ImportDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ImportDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ImportDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 304 | case DOT: | |
| 305 |
2
1. ImportDeclaration : Substituted 85 with 86 → NO_COVERAGE 2. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 306 |
2
1. ImportDeclaration : Substituted 103 with 104 → NO_COVERAGE 2. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(STAR); |
| 307 | break; | |
| 308 | default: | |
| 309 | ; | |
| 310 | } | |
| 311 |
2
1. ImportDeclaration : Substituted 83 with 84 → NO_COVERAGE 2. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 312 | } catch (Throwable jjte000) { | |
| 313 |
3
1. ImportDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. ImportDeclaration : negated conditional → KILLED 3. ImportDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 314 |
1
1. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 315 |
1
1. ImportDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 316 | } else { | |
| 317 |
1
1. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 318 | } | |
| 319 |
3
1. ImportDeclaration : negated conditional → SURVIVED 2. ImportDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. ImportDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 320 | { | |
| 321 | if (true) { | |
| 322 | throw (RuntimeException) jjte000; | |
| 323 | } | |
| 324 | } | |
| 325 | } | |
| 326 |
3
1. ImportDeclaration : negated conditional → SURVIVED 2. ImportDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. ImportDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 327 | { | |
| 328 | if (true) { | |
| 329 | throw (ParseException) jjte000; | |
| 330 | } | |
| 331 | } | |
| 332 | } | |
| 333 | { | |
| 334 | if (true) { | |
| 335 | throw (Error) jjte000; | |
| 336 | } | |
| 337 | } | |
| 338 | } finally { | |
| 339 |
6
1. ImportDeclaration : negated conditional → SURVIVED 2. ImportDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. ImportDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. ImportDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. ImportDeclaration : negated conditional → KILLED 6. ImportDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 340 |
4
1. ImportDeclaration : Substituted 1 with 0 → SURVIVED 2. ImportDeclaration : Substituted 1 with 0 → SURVIVED 3. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ImportDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 341 | } | |
| 342 | } | |
| 343 | } | |
| 344 | ||
| 345 | /* | |
| 346 | * Modifiers. We match all modifiers in a single rule to reduce the chances of | |
| 347 | * syntax errors for simple modifier mistakes. It will also enable us to give | |
| 348 | * better error messages. | |
| 349 | */ | |
| 350 | final public int Modifiers() throws ParseException { | |
| 351 | /*@bgen(jjtree) Modifiers */ | |
| 352 |
2
1. Modifiers : Substituted 3 with 4 → SURVIVED 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMODIFIERS); |
| 353 |
1
1. Modifiers : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 354 |
1
1. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 355 |
1
1. Modifiers : Substituted 0 with 1 → KILLED |
int modifiers = 0; |
| 356 | try { | |
| 357 | label_3:while (true) { | |
| 358 |
5
1. Modifiers : Substituted 2 with 3 → SURVIVED 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_1 → SURVIVED 3. Modifiers : removed conditional - replaced equality check with false → SURVIVED 4. Modifiers : negated conditional → KILLED 5. Modifiers : removed conditional - replaced equality check with true → KILLED |
if (jj_2_1(2)) { |
| 359 | ; | |
| 360 | } else { | |
| 361 | break label_3; | |
| 362 | } | |
| 363 |
18
1. Modifiers : Substituted -1 with 0 → NO_COVERAGE 2. Modifiers : negated conditional → NO_COVERAGE 3. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. Modifiers : removed conditional - replaced equality check with false → NO_COVERAGE 5. Modifiers : removed conditional - replaced equality check with true → NO_COVERAGE 6. Modifiers : RemoveSwitch 0 mutation → NO_COVERAGE 7. Modifiers : RemoveSwitch 1 mutation → NO_COVERAGE 8. Modifiers : RemoveSwitch 10 mutation → NO_COVERAGE 9. Modifiers : RemoveSwitch 11 mutation → NO_COVERAGE 10. Modifiers : RemoveSwitch 2 mutation → NO_COVERAGE 11. Modifiers : RemoveSwitch 3 mutation → NO_COVERAGE 12. Modifiers : RemoveSwitch 4 mutation → NO_COVERAGE 13. Modifiers : RemoveSwitch 5 mutation → NO_COVERAGE 14. Modifiers : RemoveSwitch 6 mutation → NO_COVERAGE 15. Modifiers : RemoveSwitch 7 mutation → NO_COVERAGE 16. Modifiers : RemoveSwitch 8 mutation → NO_COVERAGE 17. Modifiers : RemoveSwitch 9 mutation → NO_COVERAGE 18. Modifiers : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 364 | case PUBLIC: | |
| 365 |
2
1. Modifiers : Substituted 49 with 50 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(PUBLIC); |
| 366 |
2
1. Modifiers : Substituted 1 with 0 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.PUBLIC; |
| 367 | break; | |
| 368 | case STATIC: | |
| 369 |
2
1. Modifiers : Substituted 52 with 53 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(STATIC); |
| 370 |
2
1. Modifiers : Substituted 16 with 17 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.STATIC; |
| 371 | break; | |
| 372 | case PROTECTED: | |
| 373 |
2
1. Modifiers : Substituted 48 with 49 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(PROTECTED); |
| 374 |
2
1. Modifiers : Substituted 2 with 3 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.PROTECTED; |
| 375 | break; | |
| 376 | case PRIVATE: | |
| 377 |
2
1. Modifiers : Substituted 47 with 48 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(PRIVATE); |
| 378 |
2
1. Modifiers : Substituted 4 with 5 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.PRIVATE; |
| 379 | break; | |
| 380 | case FINAL: | |
| 381 |
2
1. Modifiers : Substituted 31 with 32 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(FINAL); |
| 382 |
2
1. Modifiers : Substituted 32 with 33 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.FINAL; |
| 383 | break; | |
| 384 | case ABSTRACT: | |
| 385 |
2
1. Modifiers : Substituted 13 with 14 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(ABSTRACT); |
| 386 |
2
1. Modifiers : Substituted 8 with 9 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.ABSTRACT; |
| 387 | break; | |
| 388 | case SYNCHRONIZED: | |
| 389 |
2
1. Modifiers : Substituted 56 with 57 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SYNCHRONIZED); |
| 390 |
2
1. Modifiers : Substituted 64 with 65 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.SYNCHRONIZED; |
| 391 | break; | |
| 392 | case NATIVE: | |
| 393 |
2
1. Modifiers : Substituted 43 with 44 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(NATIVE); |
| 394 |
2
1. Modifiers : Substituted 128 with 129 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.NATIVE; |
| 395 | break; | |
| 396 | case TRANSIENT: | |
| 397 |
2
1. Modifiers : Substituted 60 with 61 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(TRANSIENT); |
| 398 |
2
1. Modifiers : Substituted 256 with 257 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.TRANSIENT; |
| 399 | break; | |
| 400 | case VOLATILE: | |
| 401 |
2
1. Modifiers : Substituted 64 with 65 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(VOLATILE); |
| 402 |
2
1. Modifiers : Substituted 512 with 513 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.VOLATILE; |
| 403 | break; | |
| 404 | case STRICTFP: | |
| 405 |
2
1. Modifiers : Substituted 53 with 54 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(STRICTFP); |
| 406 |
2
1. Modifiers : Substituted 4096 with 4097 → NO_COVERAGE 2. Modifiers : Replaced bitwise OR with AND → NO_COVERAGE |
modifiers |= ModifierSet.STRICTFP; |
| 407 | break; | |
| 408 | case AT: | |
| 409 |
1
1. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Annotation → NO_COVERAGE |
Annotation(); |
| 410 | break; | |
| 411 | default: | |
| 412 |
2
1. Modifiers : Substituted -1 with 0 → NO_COVERAGE 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 413 |
1
1. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 414 | } | |
| 415 | } | |
| 416 |
2
1. Modifiers : Substituted 1 with 0 → SURVIVED 2. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 417 |
1
1. Modifiers : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 418 | { | |
| 419 | if (true) { | |
| 420 | return modifiers; | |
| 421 | } | |
| 422 | } | |
| 423 | } catch (Throwable jjte000) { | |
| 424 |
3
1. Modifiers : negated conditional → NO_COVERAGE 2. Modifiers : removed conditional - replaced equality check with false → NO_COVERAGE 3. Modifiers : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 425 |
1
1. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 426 |
1
1. Modifiers : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 427 | } else { | |
| 428 |
1
1. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 429 | } | |
| 430 |
3
1. Modifiers : negated conditional → NO_COVERAGE 2. Modifiers : removed conditional - replaced equality check with false → NO_COVERAGE 3. Modifiers : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 431 | { | |
| 432 | if (true) { | |
| 433 | throw (RuntimeException) jjte000; | |
| 434 | } | |
| 435 | } | |
| 436 | } | |
| 437 |
3
1. Modifiers : negated conditional → NO_COVERAGE 2. Modifiers : removed conditional - replaced equality check with false → NO_COVERAGE 3. Modifiers : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 438 | { | |
| 439 | if (true) { | |
| 440 | throw (ParseException) jjte000; | |
| 441 | } | |
| 442 | } | |
| 443 | } | |
| 444 | { | |
| 445 | if (true) { | |
| 446 | throw (Error) jjte000; | |
| 447 | } | |
| 448 | } | |
| 449 | } finally { | |
| 450 |
6
1. Modifiers : negated conditional → SURVIVED 2. Modifiers : removed conditional - replaced equality check with false → SURVIVED 3. Modifiers : removed conditional - replaced equality check with false → SURVIVED 4. Modifiers : removed conditional - replaced equality check with true → SURVIVED 5. Modifiers : negated conditional → KILLED 6. Modifiers : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 451 |
6
1. Modifiers : Substituted 1 with 0 → SURVIVED 2. Modifiers : Substituted 1 with 0 → SURVIVED 3. Modifiers : replaced int return with 0 for com/soops/CEN4010/JMCA/JParser/JavaParser::Modifiers → SURVIVED 4. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 5. Modifiers : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 6. Modifiers : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
jjtree.closeNodeScope(jjtn000, true); |
| 452 | } | |
| 453 | } | |
| 454 | throw new Error("Missing return statement in function"); | |
| 455 | } | |
| 456 | ||
| 457 | /* | |
| 458 | * Declaration syntax follows. | |
| 459 | */ | |
| 460 | final public void TypeDeclaration() throws ParseException { | |
| 461 | /*@bgen(jjtree) TypeDeclaration */ | |
| 462 |
2
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. TypeDeclaration : Substituted 4 with 5 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTYPEDECLARATION); |
| 463 |
1
1. TypeDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 464 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 465 | int modifiers; | |
| 466 | try { | |
| 467 |
22
1. TypeDeclaration : Substituted -1 with 0 → SURVIVED 2. TypeDeclaration : negated conditional → SURVIVED 3. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. TypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. TypeDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. TypeDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. TypeDeclaration : RemoveSwitch 1 mutation → SURVIVED 8. TypeDeclaration : RemoveSwitch 10 mutation → SURVIVED 9. TypeDeclaration : RemoveSwitch 11 mutation → SURVIVED 10. TypeDeclaration : RemoveSwitch 12 mutation → SURVIVED 11. TypeDeclaration : RemoveSwitch 13 mutation → SURVIVED 12. TypeDeclaration : RemoveSwitch 14 mutation → SURVIVED 13. TypeDeclaration : RemoveSwitch 15 mutation → SURVIVED 14. TypeDeclaration : RemoveSwitch 2 mutation → SURVIVED 15. TypeDeclaration : RemoveSwitch 3 mutation → SURVIVED 16. TypeDeclaration : RemoveSwitch 4 mutation → SURVIVED 17. TypeDeclaration : RemoveSwitch 5 mutation → SURVIVED 18. TypeDeclaration : RemoveSwitch 6 mutation → SURVIVED 19. TypeDeclaration : RemoveSwitch 7 mutation → SURVIVED 20. TypeDeclaration : RemoveSwitch 8 mutation → SURVIVED 21. TypeDeclaration : RemoveSwitch 9 mutation → SURVIVED 22. TypeDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 468 | case SEMICOLON: | |
| 469 |
2
1. TypeDeclaration : Substituted 83 with 84 → NO_COVERAGE 2. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 470 | break; | |
| 471 | case ABSTRACT: | |
| 472 | case CLASS: | |
| 473 | case ENUM: | |
| 474 | case FINAL: | |
| 475 | case INTERFACE: | |
| 476 | case NATIVE: | |
| 477 | case PRIVATE: | |
| 478 | case PROTECTED: | |
| 479 | case PUBLIC: | |
| 480 | case STATIC: | |
| 481 | case STRICTFP: | |
| 482 | case SYNCHRONIZED: | |
| 483 | case TRANSIENT: | |
| 484 | case VOLATILE: | |
| 485 | case AT: | |
| 486 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Modifiers → NO_COVERAGE |
modifiers = Modifiers(); |
| 487 |
10
1. TypeDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. TypeDeclaration : negated conditional → NO_COVERAGE 3. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. TypeDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. TypeDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. TypeDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. TypeDeclaration : RemoveSwitch 1 mutation → NO_COVERAGE 8. TypeDeclaration : RemoveSwitch 2 mutation → NO_COVERAGE 9. TypeDeclaration : RemoveSwitch 3 mutation → NO_COVERAGE 10. TypeDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 488 | case CLASS: | |
| 489 | case INTERFACE: | |
| 490 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceDeclaration → NO_COVERAGE |
ClassOrInterfaceDeclaration(modifiers); |
| 491 | break; | |
| 492 | case ENUM: | |
| 493 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EnumDeclaration → NO_COVERAGE |
EnumDeclaration(modifiers); |
| 494 | break; | |
| 495 | case AT: | |
| 496 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AnnotationTypeDeclaration → NO_COVERAGE |
AnnotationTypeDeclaration(modifiers); |
| 497 | break; | |
| 498 | default: | |
| 499 |
2
1. TypeDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 500 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 501 | } | |
| 502 | break; | |
| 503 | default: | |
| 504 |
2
1. TypeDeclaration : Substituted -1 with 0 → SURVIVED 2. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 505 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 506 | } | |
| 507 | } catch (Throwable jjte000) { | |
| 508 |
3
1. TypeDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. TypeDeclaration : negated conditional → KILLED 3. TypeDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 509 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 510 |
1
1. TypeDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 511 | } else { | |
| 512 |
1
1. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 513 | } | |
| 514 |
3
1. TypeDeclaration : negated conditional → SURVIVED 2. TypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. TypeDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 515 | { | |
| 516 | if (true) { | |
| 517 | throw (RuntimeException) jjte000; | |
| 518 | } | |
| 519 | } | |
| 520 | } | |
| 521 |
3
1. TypeDeclaration : negated conditional → SURVIVED 2. TypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. TypeDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 522 | { | |
| 523 | if (true) { | |
| 524 | throw (ParseException) jjte000; | |
| 525 | } | |
| 526 | } | |
| 527 | } | |
| 528 | { | |
| 529 | if (true) { | |
| 530 | throw (Error) jjte000; | |
| 531 | } | |
| 532 | } | |
| 533 | } finally { | |
| 534 |
6
1. TypeDeclaration : negated conditional → SURVIVED 2. TypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. TypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. TypeDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. TypeDeclaration : negated conditional → KILLED 6. TypeDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 535 |
4
1. TypeDeclaration : Substituted 1 with 0 → SURVIVED 2. TypeDeclaration : Substituted 1 with 0 → SURVIVED 3. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. TypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 536 | } | |
| 537 | } | |
| 538 | } | |
| 539 | ||
| 540 | final public void ClassOrInterfaceDeclaration(int modifiers) throws | |
| 541 | ParseException { | |
| 542 | /*@bgen(jjtree) ClassOrInterfaceDeclaration */ | |
| 543 |
2
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. ClassOrInterfaceDeclaration : Substituted 5 with 6 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, |
| 544 | JJTCLASSORINTERFACEDECLARATION); | |
| 545 |
1
1. ClassOrInterfaceDeclaration : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 546 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 547 |
1
1. ClassOrInterfaceDeclaration : Substituted 0 with 1 → NO_COVERAGE |
boolean isInterface = false; |
| 548 | try { | |
| 549 |
8
1. ClassOrInterfaceDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceDeclaration : RemoveSwitch 1 mutation → NO_COVERAGE 8. ClassOrInterfaceDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 550 | case CLASS: | |
| 551 |
2
1. ClassOrInterfaceDeclaration : Substituted 21 with 22 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(CLASS); |
| 552 | break; | |
| 553 | case INTERFACE: | |
| 554 |
2
1. ClassOrInterfaceDeclaration : Substituted 41 with 42 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(INTERFACE); |
| 555 |
1
1. ClassOrInterfaceDeclaration : Substituted 1 with 0 → NO_COVERAGE |
isInterface = true; |
| 556 | break; | |
| 557 | default: | |
| 558 |
2
1. ClassOrInterfaceDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 559 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 560 | } | |
| 561 |
2
1. ClassOrInterfaceDeclaration : Substituted 74 with 75 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 562 |
7
1. ClassOrInterfaceDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 563 | case LT: | |
| 564 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeParameters → NO_COVERAGE |
TypeParameters(); |
| 565 | break; | |
| 566 | default: | |
| 567 | ; | |
| 568 | } | |
| 569 |
7
1. ClassOrInterfaceDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 570 | case EXTENDS: | |
| 571 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ExtendsList → NO_COVERAGE |
ExtendsList(isInterface); |
| 572 | break; | |
| 573 | default: | |
| 574 | ; | |
| 575 | } | |
| 576 |
7
1. ClassOrInterfaceDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 577 | case IMPLEMENTS: | |
| 578 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ImplementsList → NO_COVERAGE |
ImplementsList(isInterface); |
| 579 | break; | |
| 580 | default: | |
| 581 | ; | |
| 582 | } | |
| 583 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceBody → NO_COVERAGE |
ClassOrInterfaceBody(isInterface); |
| 584 | } catch (Throwable jjte000) { | |
| 585 |
3
1. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 586 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 587 |
1
1. ClassOrInterfaceDeclaration : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 588 | } else { | |
| 589 |
1
1. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 590 | } | |
| 591 |
3
1. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 592 | { | |
| 593 | if (true) { | |
| 594 | throw (RuntimeException) jjte000; | |
| 595 | } | |
| 596 | } | |
| 597 | } | |
| 598 |
3
1. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 599 | { | |
| 600 | if (true) { | |
| 601 | throw (ParseException) jjte000; | |
| 602 | } | |
| 603 | } | |
| 604 | } | |
| 605 | { | |
| 606 | if (true) { | |
| 607 | throw (Error) jjte000; | |
| 608 | } | |
| 609 | } | |
| 610 | } finally { | |
| 611 |
6
1. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 4. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 612 |
4
1. ClassOrInterfaceDeclaration : Substituted 1 with 0 → NO_COVERAGE 2. ClassOrInterfaceDeclaration : Substituted 1 with 0 → NO_COVERAGE 3. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. ClassOrInterfaceDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 613 | } | |
| 614 | } | |
| 615 | } | |
| 616 | ||
| 617 | final public void ExtendsList(boolean isInterface) throws ParseException { | |
| 618 | /*@bgen(jjtree) ExtendsList */ | |
| 619 |
2
1. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ExtendsList : Substituted 6 with 7 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTEXTENDSLIST); |
| 620 |
1
1. ExtendsList : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 621 |
1
1. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 622 |
1
1. ExtendsList : Substituted 0 with 1 → SURVIVED |
boolean extendsMoreThanOne = false; |
| 623 | try { | |
| 624 |
2
1. ExtendsList : Substituted 29 with 30 → SURVIVED 2. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(EXTENDS); |
| 625 |
1
1. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → SURVIVED |
ClassOrInterfaceType(); |
| 626 | label_4:while (true) { | |
| 627 |
7
1. ExtendsList : Substituted -1 with 0 → NO_COVERAGE 2. ExtendsList : negated conditional → NO_COVERAGE 3. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ExtendsList : removed conditional - replaced equality check with false → NO_COVERAGE 5. ExtendsList : removed conditional - replaced equality check with true → NO_COVERAGE 6. ExtendsList : RemoveSwitch 0 mutation → NO_COVERAGE 7. ExtendsList : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 628 | case COMMA: | |
| 629 | ; | |
| 630 | break; | |
| 631 | default: | |
| 632 | break label_4; | |
| 633 | } | |
| 634 |
2
1. ExtendsList : Substituted 84 with 85 → NO_COVERAGE 2. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 635 |
1
1. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → NO_COVERAGE |
ClassOrInterfaceType(); |
| 636 |
1
1. ExtendsList : Substituted 1 with 0 → NO_COVERAGE |
extendsMoreThanOne = true; |
| 637 | } | |
| 638 |
2
1. ExtendsList : Substituted 1 with 0 → NO_COVERAGE 2. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 639 |
1
1. ExtendsList : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 640 |
6
1. ExtendsList : negated conditional → NO_COVERAGE 2. ExtendsList : negated conditional → NO_COVERAGE 3. ExtendsList : removed conditional - replaced equality check with false → NO_COVERAGE 4. ExtendsList : removed conditional - replaced equality check with false → NO_COVERAGE 5. ExtendsList : removed conditional - replaced equality check with true → NO_COVERAGE 6. ExtendsList : removed conditional - replaced equality check with true → NO_COVERAGE |
if (extendsMoreThanOne && !isInterface) { |
| 641 | if (true) { | |
| 642 |
1
1. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException( |
| 643 | "A class cannot extend more than one other class"); | |
| 644 | } | |
| 645 | } | |
| 646 | } catch (Throwable jjte000) { | |
| 647 |
3
1. ExtendsList : removed conditional - replaced equality check with true → SURVIVED 2. ExtendsList : negated conditional → KILLED 3. ExtendsList : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 648 |
1
1. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 649 |
1
1. ExtendsList : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 650 | } else { | |
| 651 |
1
1. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 652 | } | |
| 653 |
3
1. ExtendsList : negated conditional → SURVIVED 2. ExtendsList : removed conditional - replaced equality check with false → SURVIVED 3. ExtendsList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 654 | { | |
| 655 | if (true) { | |
| 656 | throw (RuntimeException) jjte000; | |
| 657 | } | |
| 658 | } | |
| 659 | } | |
| 660 |
3
1. ExtendsList : negated conditional → SURVIVED 2. ExtendsList : removed conditional - replaced equality check with false → SURVIVED 3. ExtendsList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 661 | { | |
| 662 | if (true) { | |
| 663 | throw (ParseException) jjte000; | |
| 664 | } | |
| 665 | } | |
| 666 | } | |
| 667 | { | |
| 668 | if (true) { | |
| 669 | throw (Error) jjte000; | |
| 670 | } | |
| 671 | } | |
| 672 | } finally { | |
| 673 |
6
1. ExtendsList : negated conditional → SURVIVED 2. ExtendsList : removed conditional - replaced equality check with false → SURVIVED 3. ExtendsList : removed conditional - replaced equality check with false → SURVIVED 4. ExtendsList : removed conditional - replaced equality check with true → SURVIVED 5. ExtendsList : negated conditional → KILLED 6. ExtendsList : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 674 |
4
1. ExtendsList : Substituted 1 with 0 → SURVIVED 2. ExtendsList : Substituted 1 with 0 → SURVIVED 3. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ExtendsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 675 | } | |
| 676 | } | |
| 677 | } | |
| 678 | ||
| 679 | final public void ImplementsList(boolean isInterface) throws ParseException { | |
| 680 | /*@bgen(jjtree) ImplementsList */ | |
| 681 |
2
1. ImplementsList : Substituted 7 with 8 → SURVIVED 2. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTIMPLEMENTSLIST); |
| 682 |
1
1. ImplementsList : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 683 |
1
1. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 684 | try { | |
| 685 |
2
1. ImplementsList : Substituted 37 with 38 → SURVIVED 2. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IMPLEMENTS); |
| 686 |
1
1. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → SURVIVED |
ClassOrInterfaceType(); |
| 687 | label_5:while (true) { | |
| 688 |
7
1. ImplementsList : Substituted -1 with 0 → NO_COVERAGE 2. ImplementsList : negated conditional → NO_COVERAGE 3. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ImplementsList : removed conditional - replaced equality check with false → NO_COVERAGE 5. ImplementsList : removed conditional - replaced equality check with true → NO_COVERAGE 6. ImplementsList : RemoveSwitch 0 mutation → NO_COVERAGE 7. ImplementsList : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 689 | case COMMA: | |
| 690 | ; | |
| 691 | break; | |
| 692 | default: | |
| 693 | break label_5; | |
| 694 | } | |
| 695 |
2
1. ImplementsList : Substituted 84 with 85 → NO_COVERAGE 2. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 696 |
1
1. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → NO_COVERAGE |
ClassOrInterfaceType(); |
| 697 | } | |
| 698 |
2
1. ImplementsList : Substituted 1 with 0 → NO_COVERAGE 2. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 699 |
1
1. ImplementsList : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 700 |
3
1. ImplementsList : negated conditional → NO_COVERAGE 2. ImplementsList : removed conditional - replaced equality check with false → NO_COVERAGE 3. ImplementsList : removed conditional - replaced equality check with true → NO_COVERAGE |
if (isInterface) { |
| 701 | if (true) { | |
| 702 |
1
1. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException( |
| 703 | "An interface cannot implement other interfaces"); | |
| 704 | } | |
| 705 | } | |
| 706 | } catch (Throwable jjte000) { | |
| 707 |
3
1. ImplementsList : removed conditional - replaced equality check with true → SURVIVED 2. ImplementsList : negated conditional → KILLED 3. ImplementsList : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 708 |
1
1. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 709 |
1
1. ImplementsList : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 710 | } else { | |
| 711 |
1
1. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 712 | } | |
| 713 |
3
1. ImplementsList : negated conditional → SURVIVED 2. ImplementsList : removed conditional - replaced equality check with false → SURVIVED 3. ImplementsList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 714 | { | |
| 715 | if (true) { | |
| 716 | throw (RuntimeException) jjte000; | |
| 717 | } | |
| 718 | } | |
| 719 | } | |
| 720 |
3
1. ImplementsList : negated conditional → SURVIVED 2. ImplementsList : removed conditional - replaced equality check with false → SURVIVED 3. ImplementsList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 721 | { | |
| 722 | if (true) { | |
| 723 | throw (ParseException) jjte000; | |
| 724 | } | |
| 725 | } | |
| 726 | } | |
| 727 | { | |
| 728 | if (true) { | |
| 729 | throw (Error) jjte000; | |
| 730 | } | |
| 731 | } | |
| 732 | } finally { | |
| 733 |
6
1. ImplementsList : negated conditional → SURVIVED 2. ImplementsList : removed conditional - replaced equality check with false → SURVIVED 3. ImplementsList : removed conditional - replaced equality check with false → SURVIVED 4. ImplementsList : removed conditional - replaced equality check with true → SURVIVED 5. ImplementsList : negated conditional → KILLED 6. ImplementsList : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 734 |
4
1. ImplementsList : Substituted 1 with 0 → SURVIVED 2. ImplementsList : Substituted 1 with 0 → SURVIVED 3. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ImplementsList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 735 | } | |
| 736 | } | |
| 737 | } | |
| 738 | ||
| 739 | final public void EnumDeclaration(int modifiers) throws ParseException { | |
| 740 | /*@bgen(jjtree) EnumDeclaration */ | |
| 741 |
2
1. EnumDeclaration : Substituted 8 with 9 → SURVIVED 2. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTENUMDECLARATION); |
| 742 |
1
1. EnumDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 743 |
1
1. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 744 | try { | |
| 745 |
2
1. EnumDeclaration : Substituted 28 with 29 → SURVIVED 2. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(ENUM); |
| 746 |
2
1. EnumDeclaration : Substituted 74 with 75 → SURVIVED 2. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IDENTIFIER); |
| 747 |
7
1. EnumDeclaration : Substituted -1 with 0 → SURVIVED 2. EnumDeclaration : negated conditional → SURVIVED 3. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. EnumDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. EnumDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. EnumDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. EnumDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 748 | case IMPLEMENTS: | |
| 749 |
2
1. EnumDeclaration : Substituted 0 with 1 → NO_COVERAGE 2. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ImplementsList → NO_COVERAGE |
ImplementsList(false); |
| 750 | break; | |
| 751 | default: | |
| 752 | ; | |
| 753 | } | |
| 754 |
1
1. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EnumBody → NO_COVERAGE |
EnumBody(); |
| 755 | } catch (Throwable jjte000) { | |
| 756 |
3
1. EnumDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. EnumDeclaration : negated conditional → KILLED 3. EnumDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 757 |
1
1. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 758 |
1
1. EnumDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 759 | } else { | |
| 760 |
1
1. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 761 | } | |
| 762 |
3
1. EnumDeclaration : removed conditional - replaced equality check with false → SURVIVED 2. EnumDeclaration : negated conditional → KILLED 3. EnumDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 763 | { | |
| 764 | if (true) { | |
| 765 | throw (RuntimeException) jjte000; | |
| 766 | } | |
| 767 | } | |
| 768 | } | |
| 769 |
3
1. EnumDeclaration : removed conditional - replaced equality check with false → SURVIVED 2. EnumDeclaration : negated conditional → KILLED 3. EnumDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 770 | { | |
| 771 | if (true) { | |
| 772 | throw (ParseException) jjte000; | |
| 773 | } | |
| 774 | } | |
| 775 | } | |
| 776 | { | |
| 777 | if (true) { | |
| 778 | throw (Error) jjte000; | |
| 779 | } | |
| 780 | } | |
| 781 | } finally { | |
| 782 |
6
1. EnumDeclaration : negated conditional → SURVIVED 2. EnumDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. EnumDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. EnumDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. EnumDeclaration : negated conditional → KILLED 6. EnumDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 783 |
4
1. EnumDeclaration : Substituted 1 with 0 → SURVIVED 2. EnumDeclaration : Substituted 1 with 0 → SURVIVED 3. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. EnumDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 784 | } | |
| 785 | } | |
| 786 | } | |
| 787 | ||
| 788 | final public void EnumBody() throws ParseException { | |
| 789 | /*@bgen(jjtree) EnumBody */ | |
| 790 |
2
1. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. EnumBody : Substituted 9 with 10 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTENUMBODY); |
| 791 |
1
1. EnumBody : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 792 |
1
1. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 793 | try { | |
| 794 |
2
1. EnumBody : Substituted 79 with 80 → SURVIVED 2. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LBRACE); |
| 795 |
1
1. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EnumConstant → SURVIVED |
EnumConstant(); |
| 796 | label_6:while (true) { | |
| 797 |
7
1. EnumBody : Substituted -1 with 0 → NO_COVERAGE 2. EnumBody : negated conditional → NO_COVERAGE 3. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. EnumBody : removed conditional - replaced equality check with false → NO_COVERAGE 5. EnumBody : removed conditional - replaced equality check with true → NO_COVERAGE 6. EnumBody : RemoveSwitch 0 mutation → NO_COVERAGE 7. EnumBody : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 798 | case COMMA: | |
| 799 | ; | |
| 800 | break; | |
| 801 | default: | |
| 802 | break label_6; | |
| 803 | } | |
| 804 |
2
1. EnumBody : Substituted 84 with 85 → NO_COVERAGE 2. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 805 |
1
1. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EnumConstant → NO_COVERAGE |
EnumConstant(); |
| 806 | } | |
| 807 |
7
1. EnumBody : Substituted -1 with 0 → NO_COVERAGE 2. EnumBody : negated conditional → NO_COVERAGE 3. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. EnumBody : removed conditional - replaced equality check with false → NO_COVERAGE 5. EnumBody : removed conditional - replaced equality check with true → NO_COVERAGE 6. EnumBody : RemoveSwitch 0 mutation → NO_COVERAGE 7. EnumBody : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 808 | case SEMICOLON: | |
| 809 |
2
1. EnumBody : Substituted 83 with 84 → NO_COVERAGE 2. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 810 | label_7: | |
| 811 | while (true) { | |
| 812 |
82
1. EnumBody : Substituted -1 with 0 → NO_COVERAGE 2. EnumBody : negated conditional → NO_COVERAGE 3. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. EnumBody : removed conditional - replaced equality check with false → NO_COVERAGE 5. EnumBody : removed conditional - replaced equality check with true → NO_COVERAGE 6. EnumBody : RemoveSwitch 0 mutation → NO_COVERAGE 7. EnumBody : RemoveSwitch 1 mutation → NO_COVERAGE 8. EnumBody : RemoveSwitch 10 mutation → NO_COVERAGE 9. EnumBody : RemoveSwitch 11 mutation → NO_COVERAGE 10. EnumBody : RemoveSwitch 12 mutation → NO_COVERAGE 11. EnumBody : RemoveSwitch 13 mutation → NO_COVERAGE 12. EnumBody : RemoveSwitch 14 mutation → NO_COVERAGE 13. EnumBody : RemoveSwitch 15 mutation → NO_COVERAGE 14. EnumBody : RemoveSwitch 16 mutation → NO_COVERAGE 15. EnumBody : RemoveSwitch 17 mutation → NO_COVERAGE 16. EnumBody : RemoveSwitch 18 mutation → NO_COVERAGE 17. EnumBody : RemoveSwitch 19 mutation → NO_COVERAGE 18. EnumBody : RemoveSwitch 2 mutation → NO_COVERAGE 19. EnumBody : RemoveSwitch 20 mutation → NO_COVERAGE 20. EnumBody : RemoveSwitch 21 mutation → NO_COVERAGE 21. EnumBody : RemoveSwitch 22 mutation → NO_COVERAGE 22. EnumBody : RemoveSwitch 23 mutation → NO_COVERAGE 23. EnumBody : RemoveSwitch 24 mutation → NO_COVERAGE 24. EnumBody : RemoveSwitch 25 mutation → NO_COVERAGE 25. EnumBody : RemoveSwitch 26 mutation → NO_COVERAGE 26. EnumBody : RemoveSwitch 27 mutation → NO_COVERAGE 27. EnumBody : RemoveSwitch 28 mutation → NO_COVERAGE 28. EnumBody : RemoveSwitch 29 mutation → NO_COVERAGE 29. EnumBody : RemoveSwitch 3 mutation → NO_COVERAGE 30. EnumBody : RemoveSwitch 30 mutation → NO_COVERAGE 31. EnumBody : RemoveSwitch 31 mutation → NO_COVERAGE 32. EnumBody : RemoveSwitch 32 mutation → NO_COVERAGE 33. EnumBody : RemoveSwitch 33 mutation → NO_COVERAGE 34. EnumBody : RemoveSwitch 34 mutation → NO_COVERAGE 35. EnumBody : RemoveSwitch 35 mutation → NO_COVERAGE 36. EnumBody : RemoveSwitch 36 mutation → NO_COVERAGE 37. EnumBody : RemoveSwitch 37 mutation → NO_COVERAGE 38. EnumBody : RemoveSwitch 38 mutation → NO_COVERAGE 39. EnumBody : RemoveSwitch 39 mutation → NO_COVERAGE 40. EnumBody : RemoveSwitch 4 mutation → NO_COVERAGE 41. EnumBody : RemoveSwitch 40 mutation → NO_COVERAGE 42. EnumBody : RemoveSwitch 41 mutation → NO_COVERAGE 43. EnumBody : RemoveSwitch 42 mutation → NO_COVERAGE 44. EnumBody : RemoveSwitch 43 mutation → NO_COVERAGE 45. EnumBody : RemoveSwitch 44 mutation → NO_COVERAGE 46. EnumBody : RemoveSwitch 45 mutation → NO_COVERAGE 47. EnumBody : RemoveSwitch 46 mutation → NO_COVERAGE 48. EnumBody : RemoveSwitch 47 mutation → NO_COVERAGE 49. EnumBody : RemoveSwitch 48 mutation → NO_COVERAGE 50. EnumBody : RemoveSwitch 49 mutation → NO_COVERAGE 51. EnumBody : RemoveSwitch 5 mutation → NO_COVERAGE 52. EnumBody : RemoveSwitch 50 mutation → NO_COVERAGE 53. EnumBody : RemoveSwitch 51 mutation → NO_COVERAGE 54. EnumBody : RemoveSwitch 52 mutation → NO_COVERAGE 55. EnumBody : RemoveSwitch 53 mutation → NO_COVERAGE 56. EnumBody : RemoveSwitch 54 mutation → NO_COVERAGE 57. EnumBody : RemoveSwitch 55 mutation → NO_COVERAGE 58. EnumBody : RemoveSwitch 56 mutation → NO_COVERAGE 59. EnumBody : RemoveSwitch 57 mutation → NO_COVERAGE 60. EnumBody : RemoveSwitch 58 mutation → NO_COVERAGE 61. EnumBody : RemoveSwitch 59 mutation → NO_COVERAGE 62. EnumBody : RemoveSwitch 6 mutation → NO_COVERAGE 63. EnumBody : RemoveSwitch 60 mutation → NO_COVERAGE 64. EnumBody : RemoveSwitch 61 mutation → NO_COVERAGE 65. EnumBody : RemoveSwitch 62 mutation → NO_COVERAGE 66. EnumBody : RemoveSwitch 63 mutation → NO_COVERAGE 67. EnumBody : RemoveSwitch 64 mutation → NO_COVERAGE 68. EnumBody : RemoveSwitch 65 mutation → NO_COVERAGE 69. EnumBody : RemoveSwitch 66 mutation → NO_COVERAGE 70. EnumBody : RemoveSwitch 67 mutation → NO_COVERAGE 71. EnumBody : RemoveSwitch 68 mutation → NO_COVERAGE 72. EnumBody : RemoveSwitch 69 mutation → NO_COVERAGE 73. EnumBody : RemoveSwitch 7 mutation → NO_COVERAGE 74. EnumBody : RemoveSwitch 70 mutation → NO_COVERAGE 75. EnumBody : RemoveSwitch 71 mutation → NO_COVERAGE 76. EnumBody : RemoveSwitch 72 mutation → NO_COVERAGE 77. EnumBody : RemoveSwitch 73 mutation → NO_COVERAGE 78. EnumBody : RemoveSwitch 74 mutation → NO_COVERAGE 79. EnumBody : RemoveSwitch 75 mutation → NO_COVERAGE 80. EnumBody : RemoveSwitch 8 mutation → NO_COVERAGE 81. EnumBody : RemoveSwitch 9 mutation → NO_COVERAGE 82. EnumBody : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 813 | case ABSTRACT: | |
| 814 | case BOOLEAN: | |
| 815 | case BYTE: | |
| 816 | case CHAR: | |
| 817 | case CLASS: | |
| 818 | case DOUBLE: | |
| 819 | case ENUM: | |
| 820 | case FINAL: | |
| 821 | case FLOAT: | |
| 822 | case INT: | |
| 823 | case INTERFACE: | |
| 824 | case LONG: | |
| 825 | case NATIVE: | |
| 826 | case PRIVATE: | |
| 827 | case PROTECTED: | |
| 828 | case PUBLIC: | |
| 829 | case SHORT: | |
| 830 | case STATIC: | |
| 831 | case STRICTFP: | |
| 832 | case SYNCHRONIZED: | |
| 833 | case TRANSIENT: | |
| 834 | case VOID: | |
| 835 | case VOLATILE: | |
| 836 | case IDENTIFIER: | |
| 837 | case LBRACE: | |
| 838 | case SEMICOLON: | |
| 839 | case AT: | |
| 840 | case LT: | |
| 841 | ; | |
| 842 | break; | |
| 843 | default: | |
| 844 | break label_7; | |
| 845 | } | |
| 846 |
2
1. EnumBody : Substituted 0 with 1 → NO_COVERAGE 2. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceBodyDeclaration → NO_COVERAGE |
ClassOrInterfaceBodyDeclaration(false); |
| 847 | } | |
| 848 | break; | |
| 849 | default: | |
| 850 | ; | |
| 851 | } | |
| 852 |
2
1. EnumBody : Substituted 80 with 81 → NO_COVERAGE 2. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 853 | } catch (Throwable jjte000) { | |
| 854 |
3
1. EnumBody : removed conditional - replaced equality check with true → SURVIVED 2. EnumBody : negated conditional → KILLED 3. EnumBody : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 855 |
1
1. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 856 |
1
1. EnumBody : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 857 | } else { | |
| 858 |
1
1. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 859 | } | |
| 860 |
3
1. EnumBody : negated conditional → SURVIVED 2. EnumBody : removed conditional - replaced equality check with false → SURVIVED 3. EnumBody : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 861 | { | |
| 862 | if (true) { | |
| 863 | throw (RuntimeException) jjte000; | |
| 864 | } | |
| 865 | } | |
| 866 | } | |
| 867 |
3
1. EnumBody : negated conditional → SURVIVED 2. EnumBody : removed conditional - replaced equality check with false → SURVIVED 3. EnumBody : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 868 | { | |
| 869 | if (true) { | |
| 870 | throw (ParseException) jjte000; | |
| 871 | } | |
| 872 | } | |
| 873 | } | |
| 874 | { | |
| 875 | if (true) { | |
| 876 | throw (Error) jjte000; | |
| 877 | } | |
| 878 | } | |
| 879 | } finally { | |
| 880 |
6
1. EnumBody : negated conditional → SURVIVED 2. EnumBody : removed conditional - replaced equality check with false → SURVIVED 3. EnumBody : removed conditional - replaced equality check with false → SURVIVED 4. EnumBody : removed conditional - replaced equality check with true → SURVIVED 5. EnumBody : negated conditional → KILLED 6. EnumBody : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 881 |
4
1. EnumBody : Substituted 1 with 0 → SURVIVED 2. EnumBody : Substituted 1 with 0 → SURVIVED 3. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. EnumBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 882 | } | |
| 883 | } | |
| 884 | } | |
| 885 | ||
| 886 | final public void EnumConstant() throws ParseException { | |
| 887 | /*@bgen(jjtree) EnumConstant */ | |
| 888 |
2
1. EnumConstant : Substituted 10 with 11 → SURVIVED 2. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTENUMCONSTANT); |
| 889 |
1
1. EnumConstant : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 890 |
1
1. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 891 | try { | |
| 892 |
2
1. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED 2. EnumConstant : Substituted 74 with 75 → KILLED |
jj_consume_token(IDENTIFIER); |
| 893 |
7
1. EnumConstant : Substituted -1 with 0 → SURVIVED 2. EnumConstant : negated conditional → SURVIVED 3. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. EnumConstant : removed conditional - replaced equality check with false → SURVIVED 5. EnumConstant : removed conditional - replaced equality check with true → SURVIVED 6. EnumConstant : RemoveSwitch 0 mutation → SURVIVED 7. EnumConstant : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 894 | case LPAREN: | |
| 895 |
1
1. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Arguments → NO_COVERAGE |
Arguments(); |
| 896 | break; | |
| 897 | default: | |
| 898 | ; | |
| 899 | } | |
| 900 |
7
1. EnumConstant : Substituted -1 with 0 → SURVIVED 2. EnumConstant : negated conditional → SURVIVED 3. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. EnumConstant : removed conditional - replaced equality check with false → SURVIVED 5. EnumConstant : removed conditional - replaced equality check with true → SURVIVED 6. EnumConstant : RemoveSwitch 0 mutation → SURVIVED 7. EnumConstant : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 901 | case LBRACE: | |
| 902 |
2
1. EnumConstant : Substituted 0 with 1 → NO_COVERAGE 2. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceBody → NO_COVERAGE |
ClassOrInterfaceBody(false); |
| 903 | break; | |
| 904 | default: | |
| 905 | ; | |
| 906 | } | |
| 907 | } catch (Throwable jjte000) { | |
| 908 |
3
1. EnumConstant : removed conditional - replaced equality check with true → SURVIVED 2. EnumConstant : negated conditional → KILLED 3. EnumConstant : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 909 |
1
1. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 910 |
1
1. EnumConstant : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 911 | } else { | |
| 912 |
1
1. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 913 | } | |
| 914 |
3
1. EnumConstant : negated conditional → SURVIVED 2. EnumConstant : removed conditional - replaced equality check with false → SURVIVED 3. EnumConstant : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 915 | { | |
| 916 | if (true) { | |
| 917 | throw (RuntimeException) jjte000; | |
| 918 | } | |
| 919 | } | |
| 920 | } | |
| 921 |
3
1. EnumConstant : negated conditional → SURVIVED 2. EnumConstant : removed conditional - replaced equality check with false → SURVIVED 3. EnumConstant : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 922 | { | |
| 923 | if (true) { | |
| 924 | throw (ParseException) jjte000; | |
| 925 | } | |
| 926 | } | |
| 927 | } | |
| 928 | { | |
| 929 | if (true) { | |
| 930 | throw (Error) jjte000; | |
| 931 | } | |
| 932 | } | |
| 933 | } finally { | |
| 934 |
6
1. EnumConstant : negated conditional → SURVIVED 2. EnumConstant : removed conditional - replaced equality check with false → SURVIVED 3. EnumConstant : removed conditional - replaced equality check with false → SURVIVED 4. EnumConstant : removed conditional - replaced equality check with true → SURVIVED 5. EnumConstant : negated conditional → KILLED 6. EnumConstant : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 935 |
4
1. EnumConstant : Substituted 1 with 0 → SURVIVED 2. EnumConstant : Substituted 1 with 0 → SURVIVED 3. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. EnumConstant : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 936 | } | |
| 937 | } | |
| 938 | } | |
| 939 | ||
| 940 | final public void TypeParameters() throws ParseException { | |
| 941 | /*@bgen(jjtree) TypeParameters */ | |
| 942 |
2
1. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. TypeParameters : Substituted 11 with 12 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTYPEPARAMETERS); |
| 943 |
1
1. TypeParameters : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 944 |
1
1. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 945 | try { | |
| 946 |
2
1. TypeParameters : Substituted 88 with 89 → SURVIVED 2. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LT); |
| 947 |
1
1. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeParameter → SURVIVED |
TypeParameter(); |
| 948 | label_8:while (true) { | |
| 949 |
7
1. TypeParameters : Substituted -1 with 0 → NO_COVERAGE 2. TypeParameters : negated conditional → NO_COVERAGE 3. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. TypeParameters : removed conditional - replaced equality check with false → NO_COVERAGE 5. TypeParameters : removed conditional - replaced equality check with true → NO_COVERAGE 6. TypeParameters : RemoveSwitch 0 mutation → NO_COVERAGE 7. TypeParameters : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 950 | case COMMA: | |
| 951 | ; | |
| 952 | break; | |
| 953 | default: | |
| 954 | break label_8; | |
| 955 | } | |
| 956 |
2
1. TypeParameters : Substituted 84 with 85 → NO_COVERAGE 2. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 957 |
1
1. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeParameter → NO_COVERAGE |
TypeParameter(); |
| 958 | } | |
| 959 |
2
1. TypeParameters : Substituted 124 with 125 → NO_COVERAGE 2. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 960 | } catch (Throwable jjte000) { | |
| 961 |
3
1. TypeParameters : removed conditional - replaced equality check with true → SURVIVED 2. TypeParameters : negated conditional → KILLED 3. TypeParameters : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 962 |
1
1. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 963 |
1
1. TypeParameters : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 964 | } else { | |
| 965 |
1
1. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 966 | } | |
| 967 |
3
1. TypeParameters : removed conditional - replaced equality check with true → SURVIVED 2. TypeParameters : negated conditional → KILLED 3. TypeParameters : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 968 | { | |
| 969 | if (true) { | |
| 970 | throw (RuntimeException) jjte000; | |
| 971 | } | |
| 972 | } | |
| 973 | } | |
| 974 |
3
1. TypeParameters : negated conditional → SURVIVED 2. TypeParameters : removed conditional - replaced equality check with false → SURVIVED 3. TypeParameters : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 975 | { | |
| 976 | if (true) { | |
| 977 | throw (ParseException) jjte000; | |
| 978 | } | |
| 979 | } | |
| 980 | } | |
| 981 | { | |
| 982 | if (true) { | |
| 983 | throw (Error) jjte000; | |
| 984 | } | |
| 985 | } | |
| 986 | } finally { | |
| 987 |
6
1. TypeParameters : negated conditional → SURVIVED 2. TypeParameters : removed conditional - replaced equality check with false → SURVIVED 3. TypeParameters : removed conditional - replaced equality check with false → SURVIVED 4. TypeParameters : removed conditional - replaced equality check with true → SURVIVED 5. TypeParameters : negated conditional → KILLED 6. TypeParameters : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 988 |
4
1. TypeParameters : Substituted 1 with 0 → SURVIVED 2. TypeParameters : Substituted 1 with 0 → SURVIVED 3. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. TypeParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 989 | } | |
| 990 | } | |
| 991 | } | |
| 992 | ||
| 993 | final public void TypeParameter() throws ParseException { | |
| 994 | /*@bgen(jjtree) TypeParameter */ | |
| 995 |
2
1. TypeParameter : Substituted 12 with 13 → SURVIVED 2. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTYPEPARAMETER); |
| 996 |
1
1. TypeParameter : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 997 |
1
1. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 998 | try { | |
| 999 |
2
1. TypeParameter : Substituted 74 with 75 → KILLED 2. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(IDENTIFIER); |
| 1000 |
7
1. TypeParameter : Substituted -1 with 0 → SURVIVED 2. TypeParameter : negated conditional → SURVIVED 3. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. TypeParameter : removed conditional - replaced equality check with false → SURVIVED 5. TypeParameter : removed conditional - replaced equality check with true → SURVIVED 6. TypeParameter : RemoveSwitch 0 mutation → SURVIVED 7. TypeParameter : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1001 | case EXTENDS: | |
| 1002 |
1
1. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeBound → NO_COVERAGE |
TypeBound(); |
| 1003 | break; | |
| 1004 | default: | |
| 1005 | ; | |
| 1006 | } | |
| 1007 | } catch (Throwable jjte000) { | |
| 1008 |
3
1. TypeParameter : removed conditional - replaced equality check with true → SURVIVED 2. TypeParameter : negated conditional → KILLED 3. TypeParameter : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1009 |
1
1. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1010 |
1
1. TypeParameter : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1011 | } else { | |
| 1012 |
1
1. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1013 | } | |
| 1014 |
3
1. TypeParameter : removed conditional - replaced equality check with false → SURVIVED 2. TypeParameter : negated conditional → KILLED 3. TypeParameter : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 1015 | { | |
| 1016 | if (true) { | |
| 1017 | throw (RuntimeException) jjte000; | |
| 1018 | } | |
| 1019 | } | |
| 1020 | } | |
| 1021 |
3
1. TypeParameter : removed conditional - replaced equality check with false → SURVIVED 2. TypeParameter : negated conditional → KILLED 3. TypeParameter : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 1022 | { | |
| 1023 | if (true) { | |
| 1024 | throw (ParseException) jjte000; | |
| 1025 | } | |
| 1026 | } | |
| 1027 | } | |
| 1028 | { | |
| 1029 | if (true) { | |
| 1030 | throw (Error) jjte000; | |
| 1031 | } | |
| 1032 | } | |
| 1033 | } finally { | |
| 1034 |
6
1. TypeParameter : negated conditional → SURVIVED 2. TypeParameter : removed conditional - replaced equality check with false → SURVIVED 3. TypeParameter : removed conditional - replaced equality check with false → SURVIVED 4. TypeParameter : removed conditional - replaced equality check with true → SURVIVED 5. TypeParameter : negated conditional → KILLED 6. TypeParameter : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1035 |
4
1. TypeParameter : Substituted 1 with 0 → SURVIVED 2. TypeParameter : Substituted 1 with 0 → SURVIVED 3. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. TypeParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1036 | } | |
| 1037 | } | |
| 1038 | } | |
| 1039 | ||
| 1040 | final public void TypeBound() throws ParseException { | |
| 1041 | /*@bgen(jjtree) TypeBound */ | |
| 1042 |
2
1. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. TypeBound : Substituted 13 with 14 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTYPEBOUND); |
| 1043 |
1
1. TypeBound : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1044 |
1
1. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1045 | try { | |
| 1046 |
2
1. TypeBound : Substituted 29 with 30 → SURVIVED 2. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(EXTENDS); |
| 1047 |
1
1. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → SURVIVED |
ClassOrInterfaceType(); |
| 1048 | label_9:while (true) { | |
| 1049 |
7
1. TypeBound : Substituted -1 with 0 → NO_COVERAGE 2. TypeBound : negated conditional → NO_COVERAGE 3. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. TypeBound : removed conditional - replaced equality check with false → NO_COVERAGE 5. TypeBound : removed conditional - replaced equality check with true → NO_COVERAGE 6. TypeBound : RemoveSwitch 0 mutation → NO_COVERAGE 7. TypeBound : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1050 | case BIT_AND: | |
| 1051 | ; | |
| 1052 | break; | |
| 1053 | default: | |
| 1054 | break label_9; | |
| 1055 | } | |
| 1056 |
2
1. TypeBound : Substituted 105 with 106 → NO_COVERAGE 2. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(BIT_AND); |
| 1057 |
1
1. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → NO_COVERAGE |
ClassOrInterfaceType(); |
| 1058 | } | |
| 1059 | } catch (Throwable jjte000) { | |
| 1060 |
3
1. TypeBound : removed conditional - replaced equality check with true → SURVIVED 2. TypeBound : negated conditional → KILLED 3. TypeBound : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1061 |
1
1. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1062 |
1
1. TypeBound : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1063 | } else { | |
| 1064 |
1
1. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1065 | } | |
| 1066 |
3
1. TypeBound : negated conditional → SURVIVED 2. TypeBound : removed conditional - replaced equality check with false → SURVIVED 3. TypeBound : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 1067 | { | |
| 1068 | if (true) { | |
| 1069 | throw (RuntimeException) jjte000; | |
| 1070 | } | |
| 1071 | } | |
| 1072 | } | |
| 1073 |
3
1. TypeBound : negated conditional → SURVIVED 2. TypeBound : removed conditional - replaced equality check with false → SURVIVED 3. TypeBound : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1074 | { | |
| 1075 | if (true) { | |
| 1076 | throw (ParseException) jjte000; | |
| 1077 | } | |
| 1078 | } | |
| 1079 | } | |
| 1080 | { | |
| 1081 | if (true) { | |
| 1082 | throw (Error) jjte000; | |
| 1083 | } | |
| 1084 | } | |
| 1085 | } finally { | |
| 1086 |
6
1. TypeBound : negated conditional → SURVIVED 2. TypeBound : removed conditional - replaced equality check with false → SURVIVED 3. TypeBound : removed conditional - replaced equality check with false → SURVIVED 4. TypeBound : removed conditional - replaced equality check with true → SURVIVED 5. TypeBound : negated conditional → KILLED 6. TypeBound : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1087 |
4
1. TypeBound : Substituted 1 with 0 → SURVIVED 2. TypeBound : Substituted 1 with 0 → SURVIVED 3. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. TypeBound : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1088 | } | |
| 1089 | } | |
| 1090 | } | |
| 1091 | ||
| 1092 | final public void ClassOrInterfaceBody(boolean isInterface) throws | |
| 1093 | ParseException { | |
| 1094 | /*@bgen(jjtree) ClassOrInterfaceBody */ | |
| 1095 |
2
1. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ClassOrInterfaceBody : Substituted 14 with 15 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCLASSORINTERFACEBODY); |
| 1096 |
1
1. ClassOrInterfaceBody : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1097 |
1
1. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1098 | try { | |
| 1099 |
2
1. ClassOrInterfaceBody : Substituted 79 with 80 → SURVIVED 2. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LBRACE); |
| 1100 | label_10:while (true) { | |
| 1101 |
82
1. ClassOrInterfaceBody : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBody : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceBody : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBody : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceBody : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceBody : RemoveSwitch 1 mutation → NO_COVERAGE 8. ClassOrInterfaceBody : RemoveSwitch 10 mutation → NO_COVERAGE 9. ClassOrInterfaceBody : RemoveSwitch 11 mutation → NO_COVERAGE 10. ClassOrInterfaceBody : RemoveSwitch 12 mutation → NO_COVERAGE 11. ClassOrInterfaceBody : RemoveSwitch 13 mutation → NO_COVERAGE 12. ClassOrInterfaceBody : RemoveSwitch 14 mutation → NO_COVERAGE 13. ClassOrInterfaceBody : RemoveSwitch 15 mutation → NO_COVERAGE 14. ClassOrInterfaceBody : RemoveSwitch 16 mutation → NO_COVERAGE 15. ClassOrInterfaceBody : RemoveSwitch 17 mutation → NO_COVERAGE 16. ClassOrInterfaceBody : RemoveSwitch 18 mutation → NO_COVERAGE 17. ClassOrInterfaceBody : RemoveSwitch 19 mutation → NO_COVERAGE 18. ClassOrInterfaceBody : RemoveSwitch 2 mutation → NO_COVERAGE 19. ClassOrInterfaceBody : RemoveSwitch 20 mutation → NO_COVERAGE 20. ClassOrInterfaceBody : RemoveSwitch 21 mutation → NO_COVERAGE 21. ClassOrInterfaceBody : RemoveSwitch 22 mutation → NO_COVERAGE 22. ClassOrInterfaceBody : RemoveSwitch 23 mutation → NO_COVERAGE 23. ClassOrInterfaceBody : RemoveSwitch 24 mutation → NO_COVERAGE 24. ClassOrInterfaceBody : RemoveSwitch 25 mutation → NO_COVERAGE 25. ClassOrInterfaceBody : RemoveSwitch 26 mutation → NO_COVERAGE 26. ClassOrInterfaceBody : RemoveSwitch 27 mutation → NO_COVERAGE 27. ClassOrInterfaceBody : RemoveSwitch 28 mutation → NO_COVERAGE 28. ClassOrInterfaceBody : RemoveSwitch 29 mutation → NO_COVERAGE 29. ClassOrInterfaceBody : RemoveSwitch 3 mutation → NO_COVERAGE 30. ClassOrInterfaceBody : RemoveSwitch 30 mutation → NO_COVERAGE 31. ClassOrInterfaceBody : RemoveSwitch 31 mutation → NO_COVERAGE 32. ClassOrInterfaceBody : RemoveSwitch 32 mutation → NO_COVERAGE 33. ClassOrInterfaceBody : RemoveSwitch 33 mutation → NO_COVERAGE 34. ClassOrInterfaceBody : RemoveSwitch 34 mutation → NO_COVERAGE 35. ClassOrInterfaceBody : RemoveSwitch 35 mutation → NO_COVERAGE 36. ClassOrInterfaceBody : RemoveSwitch 36 mutation → NO_COVERAGE 37. ClassOrInterfaceBody : RemoveSwitch 37 mutation → NO_COVERAGE 38. ClassOrInterfaceBody : RemoveSwitch 38 mutation → NO_COVERAGE 39. ClassOrInterfaceBody : RemoveSwitch 39 mutation → NO_COVERAGE 40. ClassOrInterfaceBody : RemoveSwitch 4 mutation → NO_COVERAGE 41. ClassOrInterfaceBody : RemoveSwitch 40 mutation → NO_COVERAGE 42. ClassOrInterfaceBody : RemoveSwitch 41 mutation → NO_COVERAGE 43. ClassOrInterfaceBody : RemoveSwitch 42 mutation → NO_COVERAGE 44. ClassOrInterfaceBody : RemoveSwitch 43 mutation → NO_COVERAGE 45. ClassOrInterfaceBody : RemoveSwitch 44 mutation → NO_COVERAGE 46. ClassOrInterfaceBody : RemoveSwitch 45 mutation → NO_COVERAGE 47. ClassOrInterfaceBody : RemoveSwitch 46 mutation → NO_COVERAGE 48. ClassOrInterfaceBody : RemoveSwitch 47 mutation → NO_COVERAGE 49. ClassOrInterfaceBody : RemoveSwitch 48 mutation → NO_COVERAGE 50. ClassOrInterfaceBody : RemoveSwitch 49 mutation → NO_COVERAGE 51. ClassOrInterfaceBody : RemoveSwitch 5 mutation → NO_COVERAGE 52. ClassOrInterfaceBody : RemoveSwitch 50 mutation → NO_COVERAGE 53. ClassOrInterfaceBody : RemoveSwitch 51 mutation → NO_COVERAGE 54. ClassOrInterfaceBody : RemoveSwitch 52 mutation → NO_COVERAGE 55. ClassOrInterfaceBody : RemoveSwitch 53 mutation → NO_COVERAGE 56. ClassOrInterfaceBody : RemoveSwitch 54 mutation → NO_COVERAGE 57. ClassOrInterfaceBody : RemoveSwitch 55 mutation → NO_COVERAGE 58. ClassOrInterfaceBody : RemoveSwitch 56 mutation → NO_COVERAGE 59. ClassOrInterfaceBody : RemoveSwitch 57 mutation → NO_COVERAGE 60. ClassOrInterfaceBody : RemoveSwitch 58 mutation → NO_COVERAGE 61. ClassOrInterfaceBody : RemoveSwitch 59 mutation → NO_COVERAGE 62. ClassOrInterfaceBody : RemoveSwitch 6 mutation → NO_COVERAGE 63. ClassOrInterfaceBody : RemoveSwitch 60 mutation → NO_COVERAGE 64. ClassOrInterfaceBody : RemoveSwitch 61 mutation → NO_COVERAGE 65. ClassOrInterfaceBody : RemoveSwitch 62 mutation → NO_COVERAGE 66. ClassOrInterfaceBody : RemoveSwitch 63 mutation → NO_COVERAGE 67. ClassOrInterfaceBody : RemoveSwitch 64 mutation → NO_COVERAGE 68. ClassOrInterfaceBody : RemoveSwitch 65 mutation → NO_COVERAGE 69. ClassOrInterfaceBody : RemoveSwitch 66 mutation → NO_COVERAGE 70. ClassOrInterfaceBody : RemoveSwitch 67 mutation → NO_COVERAGE 71. ClassOrInterfaceBody : RemoveSwitch 68 mutation → NO_COVERAGE 72. ClassOrInterfaceBody : RemoveSwitch 69 mutation → NO_COVERAGE 73. ClassOrInterfaceBody : RemoveSwitch 7 mutation → NO_COVERAGE 74. ClassOrInterfaceBody : RemoveSwitch 70 mutation → NO_COVERAGE 75. ClassOrInterfaceBody : RemoveSwitch 71 mutation → NO_COVERAGE 76. ClassOrInterfaceBody : RemoveSwitch 72 mutation → NO_COVERAGE 77. ClassOrInterfaceBody : RemoveSwitch 73 mutation → NO_COVERAGE 78. ClassOrInterfaceBody : RemoveSwitch 74 mutation → NO_COVERAGE 79. ClassOrInterfaceBody : RemoveSwitch 75 mutation → NO_COVERAGE 80. ClassOrInterfaceBody : RemoveSwitch 8 mutation → NO_COVERAGE 81. ClassOrInterfaceBody : RemoveSwitch 9 mutation → NO_COVERAGE 82. ClassOrInterfaceBody : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1102 | case ABSTRACT: | |
| 1103 | case BOOLEAN: | |
| 1104 | case BYTE: | |
| 1105 | case CHAR: | |
| 1106 | case CLASS: | |
| 1107 | case DOUBLE: | |
| 1108 | case ENUM: | |
| 1109 | case FINAL: | |
| 1110 | case FLOAT: | |
| 1111 | case INT: | |
| 1112 | case INTERFACE: | |
| 1113 | case LONG: | |
| 1114 | case NATIVE: | |
| 1115 | case PRIVATE: | |
| 1116 | case PROTECTED: | |
| 1117 | case PUBLIC: | |
| 1118 | case SHORT: | |
| 1119 | case STATIC: | |
| 1120 | case STRICTFP: | |
| 1121 | case SYNCHRONIZED: | |
| 1122 | case TRANSIENT: | |
| 1123 | case VOID: | |
| 1124 | case VOLATILE: | |
| 1125 | case IDENTIFIER: | |
| 1126 | case LBRACE: | |
| 1127 | case SEMICOLON: | |
| 1128 | case AT: | |
| 1129 | case LT: | |
| 1130 | ; | |
| 1131 | break; | |
| 1132 | default: | |
| 1133 | break label_10; | |
| 1134 | } | |
| 1135 |
1
1. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceBodyDeclaration → NO_COVERAGE |
ClassOrInterfaceBodyDeclaration(isInterface); |
| 1136 | } | |
| 1137 |
2
1. ClassOrInterfaceBody : Substituted 80 with 81 → NO_COVERAGE 2. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 1138 | } catch (Throwable jjte000) { | |
| 1139 |
3
1. ClassOrInterfaceBody : removed conditional - replaced equality check with true → SURVIVED 2. ClassOrInterfaceBody : negated conditional → KILLED 3. ClassOrInterfaceBody : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1140 |
1
1. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1141 |
1
1. ClassOrInterfaceBody : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1142 | } else { | |
| 1143 |
1
1. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1144 | } | |
| 1145 |
3
1. ClassOrInterfaceBody : removed conditional - replaced equality check with true → SURVIVED 2. ClassOrInterfaceBody : negated conditional → KILLED 3. ClassOrInterfaceBody : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 1146 | { | |
| 1147 | if (true) { | |
| 1148 | throw (RuntimeException) jjte000; | |
| 1149 | } | |
| 1150 | } | |
| 1151 | } | |
| 1152 |
3
1. ClassOrInterfaceBody : negated conditional → SURVIVED 2. ClassOrInterfaceBody : removed conditional - replaced equality check with false → SURVIVED 3. ClassOrInterfaceBody : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1153 | { | |
| 1154 | if (true) { | |
| 1155 | throw (ParseException) jjte000; | |
| 1156 | } | |
| 1157 | } | |
| 1158 | } | |
| 1159 | { | |
| 1160 | if (true) { | |
| 1161 | throw (Error) jjte000; | |
| 1162 | } | |
| 1163 | } | |
| 1164 | } finally { | |
| 1165 |
6
1. ClassOrInterfaceBody : negated conditional → SURVIVED 2. ClassOrInterfaceBody : removed conditional - replaced equality check with false → SURVIVED 3. ClassOrInterfaceBody : removed conditional - replaced equality check with false → SURVIVED 4. ClassOrInterfaceBody : removed conditional - replaced equality check with true → SURVIVED 5. ClassOrInterfaceBody : negated conditional → KILLED 6. ClassOrInterfaceBody : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1166 |
4
1. ClassOrInterfaceBody : Substituted 1 with 0 → SURVIVED 2. ClassOrInterfaceBody : Substituted 1 with 0 → SURVIVED 3. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ClassOrInterfaceBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1167 | } | |
| 1168 | } | |
| 1169 | } | |
| 1170 | ||
| 1171 | final public void ClassOrInterfaceBodyDeclaration(boolean isInterface) throws | |
| 1172 | ParseException { | |
| 1173 | /*@bgen(jjtree) ClassOrInterfaceBodyDeclaration */ | |
| 1174 |
2
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : Substituted 15 with 16 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, |
| 1175 | JJTCLASSORINTERFACEBODYDECLARATION); | |
| 1176 |
1
1. ClassOrInterfaceBodyDeclaration : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 1177 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 1178 |
1
1. ClassOrInterfaceBodyDeclaration : Substituted 0 with 1 → NO_COVERAGE |
boolean isNestedInterface = false; |
| 1179 | int modifiers; | |
| 1180 | try { | |
| 1181 |
5
1. ClassOrInterfaceBodyDeclaration : Substituted 2 with 3 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_4 → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_4(2)) { |
| 1182 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Initializer → NO_COVERAGE |
Initializer(); |
| 1183 |
2
1. ClassOrInterfaceBodyDeclaration : Substituted 1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 1184 |
1
1. ClassOrInterfaceBodyDeclaration : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 1185 |
3
1. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (isInterface) { |
| 1186 | if (true) { | |
| 1187 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException( |
| 1188 | "An interface cannot have initializers"); | |
| 1189 | } | |
| 1190 | } | |
| 1191 | } else { | |
| 1192 |
82
1. ClassOrInterfaceBodyDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceBodyDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceBodyDeclaration : RemoveSwitch 1 mutation → NO_COVERAGE 8. ClassOrInterfaceBodyDeclaration : RemoveSwitch 10 mutation → NO_COVERAGE 9. ClassOrInterfaceBodyDeclaration : RemoveSwitch 11 mutation → NO_COVERAGE 10. ClassOrInterfaceBodyDeclaration : RemoveSwitch 12 mutation → NO_COVERAGE 11. ClassOrInterfaceBodyDeclaration : RemoveSwitch 13 mutation → NO_COVERAGE 12. ClassOrInterfaceBodyDeclaration : RemoveSwitch 14 mutation → NO_COVERAGE 13. ClassOrInterfaceBodyDeclaration : RemoveSwitch 15 mutation → NO_COVERAGE 14. ClassOrInterfaceBodyDeclaration : RemoveSwitch 16 mutation → NO_COVERAGE 15. ClassOrInterfaceBodyDeclaration : RemoveSwitch 17 mutation → NO_COVERAGE 16. ClassOrInterfaceBodyDeclaration : RemoveSwitch 18 mutation → NO_COVERAGE 17. ClassOrInterfaceBodyDeclaration : RemoveSwitch 19 mutation → NO_COVERAGE 18. ClassOrInterfaceBodyDeclaration : RemoveSwitch 2 mutation → NO_COVERAGE 19. ClassOrInterfaceBodyDeclaration : RemoveSwitch 20 mutation → NO_COVERAGE 20. ClassOrInterfaceBodyDeclaration : RemoveSwitch 21 mutation → NO_COVERAGE 21. ClassOrInterfaceBodyDeclaration : RemoveSwitch 22 mutation → NO_COVERAGE 22. ClassOrInterfaceBodyDeclaration : RemoveSwitch 23 mutation → NO_COVERAGE 23. ClassOrInterfaceBodyDeclaration : RemoveSwitch 24 mutation → NO_COVERAGE 24. ClassOrInterfaceBodyDeclaration : RemoveSwitch 25 mutation → NO_COVERAGE 25. ClassOrInterfaceBodyDeclaration : RemoveSwitch 26 mutation → NO_COVERAGE 26. ClassOrInterfaceBodyDeclaration : RemoveSwitch 27 mutation → NO_COVERAGE 27. ClassOrInterfaceBodyDeclaration : RemoveSwitch 28 mutation → NO_COVERAGE 28. ClassOrInterfaceBodyDeclaration : RemoveSwitch 29 mutation → NO_COVERAGE 29. ClassOrInterfaceBodyDeclaration : RemoveSwitch 3 mutation → NO_COVERAGE 30. ClassOrInterfaceBodyDeclaration : RemoveSwitch 30 mutation → NO_COVERAGE 31. ClassOrInterfaceBodyDeclaration : RemoveSwitch 31 mutation → NO_COVERAGE 32. ClassOrInterfaceBodyDeclaration : RemoveSwitch 32 mutation → NO_COVERAGE 33. ClassOrInterfaceBodyDeclaration : RemoveSwitch 33 mutation → NO_COVERAGE 34. ClassOrInterfaceBodyDeclaration : RemoveSwitch 34 mutation → NO_COVERAGE 35. ClassOrInterfaceBodyDeclaration : RemoveSwitch 35 mutation → NO_COVERAGE 36. ClassOrInterfaceBodyDeclaration : RemoveSwitch 36 mutation → NO_COVERAGE 37. ClassOrInterfaceBodyDeclaration : RemoveSwitch 37 mutation → NO_COVERAGE 38. ClassOrInterfaceBodyDeclaration : RemoveSwitch 38 mutation → NO_COVERAGE 39. ClassOrInterfaceBodyDeclaration : RemoveSwitch 39 mutation → NO_COVERAGE 40. ClassOrInterfaceBodyDeclaration : RemoveSwitch 4 mutation → NO_COVERAGE 41. ClassOrInterfaceBodyDeclaration : RemoveSwitch 40 mutation → NO_COVERAGE 42. ClassOrInterfaceBodyDeclaration : RemoveSwitch 41 mutation → NO_COVERAGE 43. ClassOrInterfaceBodyDeclaration : RemoveSwitch 42 mutation → NO_COVERAGE 44. ClassOrInterfaceBodyDeclaration : RemoveSwitch 43 mutation → NO_COVERAGE 45. ClassOrInterfaceBodyDeclaration : RemoveSwitch 44 mutation → NO_COVERAGE 46. ClassOrInterfaceBodyDeclaration : RemoveSwitch 45 mutation → NO_COVERAGE 47. ClassOrInterfaceBodyDeclaration : RemoveSwitch 46 mutation → NO_COVERAGE 48. ClassOrInterfaceBodyDeclaration : RemoveSwitch 47 mutation → NO_COVERAGE 49. ClassOrInterfaceBodyDeclaration : RemoveSwitch 48 mutation → NO_COVERAGE 50. ClassOrInterfaceBodyDeclaration : RemoveSwitch 49 mutation → NO_COVERAGE 51. ClassOrInterfaceBodyDeclaration : RemoveSwitch 5 mutation → NO_COVERAGE 52. ClassOrInterfaceBodyDeclaration : RemoveSwitch 50 mutation → NO_COVERAGE 53. ClassOrInterfaceBodyDeclaration : RemoveSwitch 51 mutation → NO_COVERAGE 54. ClassOrInterfaceBodyDeclaration : RemoveSwitch 52 mutation → NO_COVERAGE 55. ClassOrInterfaceBodyDeclaration : RemoveSwitch 53 mutation → NO_COVERAGE 56. ClassOrInterfaceBodyDeclaration : RemoveSwitch 54 mutation → NO_COVERAGE 57. ClassOrInterfaceBodyDeclaration : RemoveSwitch 55 mutation → NO_COVERAGE 58. ClassOrInterfaceBodyDeclaration : RemoveSwitch 56 mutation → NO_COVERAGE 59. ClassOrInterfaceBodyDeclaration : RemoveSwitch 57 mutation → NO_COVERAGE 60. ClassOrInterfaceBodyDeclaration : RemoveSwitch 58 mutation → NO_COVERAGE 61. ClassOrInterfaceBodyDeclaration : RemoveSwitch 59 mutation → NO_COVERAGE 62. ClassOrInterfaceBodyDeclaration : RemoveSwitch 6 mutation → NO_COVERAGE 63. ClassOrInterfaceBodyDeclaration : RemoveSwitch 60 mutation → NO_COVERAGE 64. ClassOrInterfaceBodyDeclaration : RemoveSwitch 61 mutation → NO_COVERAGE 65. ClassOrInterfaceBodyDeclaration : RemoveSwitch 62 mutation → NO_COVERAGE 66. ClassOrInterfaceBodyDeclaration : RemoveSwitch 63 mutation → NO_COVERAGE 67. ClassOrInterfaceBodyDeclaration : RemoveSwitch 64 mutation → NO_COVERAGE 68. ClassOrInterfaceBodyDeclaration : RemoveSwitch 65 mutation → NO_COVERAGE 69. ClassOrInterfaceBodyDeclaration : RemoveSwitch 66 mutation → NO_COVERAGE 70. ClassOrInterfaceBodyDeclaration : RemoveSwitch 67 mutation → NO_COVERAGE 71. ClassOrInterfaceBodyDeclaration : RemoveSwitch 68 mutation → NO_COVERAGE 72. ClassOrInterfaceBodyDeclaration : RemoveSwitch 69 mutation → NO_COVERAGE 73. ClassOrInterfaceBodyDeclaration : RemoveSwitch 7 mutation → NO_COVERAGE 74. ClassOrInterfaceBodyDeclaration : RemoveSwitch 70 mutation → NO_COVERAGE 75. ClassOrInterfaceBodyDeclaration : RemoveSwitch 71 mutation → NO_COVERAGE 76. ClassOrInterfaceBodyDeclaration : RemoveSwitch 72 mutation → NO_COVERAGE 77. ClassOrInterfaceBodyDeclaration : RemoveSwitch 73 mutation → NO_COVERAGE 78. ClassOrInterfaceBodyDeclaration : RemoveSwitch 74 mutation → NO_COVERAGE 79. ClassOrInterfaceBodyDeclaration : RemoveSwitch 75 mutation → NO_COVERAGE 80. ClassOrInterfaceBodyDeclaration : RemoveSwitch 8 mutation → NO_COVERAGE 81. ClassOrInterfaceBodyDeclaration : RemoveSwitch 9 mutation → NO_COVERAGE 82. ClassOrInterfaceBodyDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1193 | case ABSTRACT: | |
| 1194 | case BOOLEAN: | |
| 1195 | case BYTE: | |
| 1196 | case CHAR: | |
| 1197 | case CLASS: | |
| 1198 | case DOUBLE: | |
| 1199 | case ENUM: | |
| 1200 | case FINAL: | |
| 1201 | case FLOAT: | |
| 1202 | case INT: | |
| 1203 | case INTERFACE: | |
| 1204 | case LONG: | |
| 1205 | case NATIVE: | |
| 1206 | case PRIVATE: | |
| 1207 | case PROTECTED: | |
| 1208 | case PUBLIC: | |
| 1209 | case SHORT: | |
| 1210 | case STATIC: | |
| 1211 | case STRICTFP: | |
| 1212 | case SYNCHRONIZED: | |
| 1213 | case TRANSIENT: | |
| 1214 | case VOID: | |
| 1215 | case VOLATILE: | |
| 1216 | case IDENTIFIER: | |
| 1217 | case AT: | |
| 1218 | case LT: | |
| 1219 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Modifiers → NO_COVERAGE |
modifiers = Modifiers(); |
| 1220 |
9
1. ClassOrInterfaceBodyDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceBodyDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceBodyDeclaration : RemoveSwitch 1 mutation → NO_COVERAGE 8. ClassOrInterfaceBodyDeclaration : RemoveSwitch 2 mutation → NO_COVERAGE 9. ClassOrInterfaceBodyDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1221 | case CLASS: | |
| 1222 | case INTERFACE: | |
| 1223 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceDeclaration → NO_COVERAGE |
ClassOrInterfaceDeclaration(modifiers); |
| 1224 | break; | |
| 1225 | case ENUM: | |
| 1226 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EnumDeclaration → NO_COVERAGE |
EnumDeclaration(modifiers); |
| 1227 | break; | |
| 1228 | default: | |
| 1229 |
5
1. ClassOrInterfaceBodyDeclaration : Substituted 2147483647 with -2147483648 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_2 → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_2(2147483647)) { |
| 1230 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ConstructorDeclaration → NO_COVERAGE |
ConstructorDeclaration(); |
| 1231 |
5
1. ClassOrInterfaceBodyDeclaration : Substituted 2147483647 with -2147483648 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_3 → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
} else if (jj_2_3(2147483647)) { |
| 1232 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::FieldDeclaration → NO_COVERAGE |
FieldDeclaration(modifiers); |
| 1233 | } else { | |
| 1234 |
17
1. ClassOrInterfaceBodyDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceBodyDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ClassOrInterfaceBodyDeclaration : RemoveSwitch 1 mutation → NO_COVERAGE 8. ClassOrInterfaceBodyDeclaration : RemoveSwitch 10 mutation → NO_COVERAGE 9. ClassOrInterfaceBodyDeclaration : RemoveSwitch 2 mutation → NO_COVERAGE 10. ClassOrInterfaceBodyDeclaration : RemoveSwitch 3 mutation → NO_COVERAGE 11. ClassOrInterfaceBodyDeclaration : RemoveSwitch 4 mutation → NO_COVERAGE 12. ClassOrInterfaceBodyDeclaration : RemoveSwitch 5 mutation → NO_COVERAGE 13. ClassOrInterfaceBodyDeclaration : RemoveSwitch 6 mutation → NO_COVERAGE 14. ClassOrInterfaceBodyDeclaration : RemoveSwitch 7 mutation → NO_COVERAGE 15. ClassOrInterfaceBodyDeclaration : RemoveSwitch 8 mutation → NO_COVERAGE 16. ClassOrInterfaceBodyDeclaration : RemoveSwitch 9 mutation → NO_COVERAGE 17. ClassOrInterfaceBodyDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1235 | case BOOLEAN: | |
| 1236 | case BYTE: | |
| 1237 | case CHAR: | |
| 1238 | case DOUBLE: | |
| 1239 | case FLOAT: | |
| 1240 | case INT: | |
| 1241 | case LONG: | |
| 1242 | case SHORT: | |
| 1243 | case VOID: | |
| 1244 | case IDENTIFIER: | |
| 1245 | case LT: | |
| 1246 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MethodDeclaration → NO_COVERAGE |
MethodDeclaration(modifiers); |
| 1247 | break; | |
| 1248 | default: | |
| 1249 |
2
1. ClassOrInterfaceBodyDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 1250 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 1251 | } | |
| 1252 | } | |
| 1253 | } | |
| 1254 | break; | |
| 1255 | case SEMICOLON: | |
| 1256 |
2
1. ClassOrInterfaceBodyDeclaration : Substituted 83 with 84 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 1257 | break; | |
| 1258 | default: | |
| 1259 |
2
1. ClassOrInterfaceBodyDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 1260 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 1261 | } | |
| 1262 | } | |
| 1263 | } catch (Throwable jjte000) { | |
| 1264 |
3
1. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 1265 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 1266 |
1
1. ClassOrInterfaceBodyDeclaration : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 1267 | } else { | |
| 1268 |
1
1. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1269 | } | |
| 1270 |
3
1. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 1271 | { | |
| 1272 | if (true) { | |
| 1273 | throw (RuntimeException) jjte000; | |
| 1274 | } | |
| 1275 | } | |
| 1276 | } | |
| 1277 |
3
1. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 1278 | { | |
| 1279 | if (true) { | |
| 1280 | throw (ParseException) jjte000; | |
| 1281 | } | |
| 1282 | } | |
| 1283 | } | |
| 1284 | { | |
| 1285 | if (true) { | |
| 1286 | throw (Error) jjte000; | |
| 1287 | } | |
| 1288 | } | |
| 1289 | } finally { | |
| 1290 |
6
1. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : negated conditional → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ClassOrInterfaceBodyDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 1291 |
4
1. ClassOrInterfaceBodyDeclaration : Substituted 1 with 0 → NO_COVERAGE 2. ClassOrInterfaceBodyDeclaration : Substituted 1 with 0 → NO_COVERAGE 3. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. ClassOrInterfaceBodyDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 1292 | } | |
| 1293 | } | |
| 1294 | } | |
| 1295 | ||
| 1296 | final public void FieldDeclaration(int modifiers) throws ParseException { | |
| 1297 | /*@bgen(jjtree) FieldDeclaration */ | |
| 1298 |
2
1. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. FieldDeclaration : Substituted 16 with 17 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTFIELDDECLARATION); |
| 1299 |
1
1. FieldDeclaration : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 1300 |
1
1. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1301 | try { | |
| 1302 |
1
1. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → SURVIVED |
Type(); |
| 1303 |
1
1. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableDeclarator → SURVIVED |
VariableDeclarator(); |
| 1304 | label_11:while (true) { | |
| 1305 |
7
1. FieldDeclaration : Substituted -1 with 0 → SURVIVED 2. FieldDeclaration : negated conditional → SURVIVED 3. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. FieldDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. FieldDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. FieldDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. FieldDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1306 | case COMMA: | |
| 1307 | ; | |
| 1308 | break; | |
| 1309 | default: | |
| 1310 | break label_11; | |
| 1311 | } | |
| 1312 |
2
1. FieldDeclaration : Substituted 84 with 85 → NO_COVERAGE 2. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 1313 |
1
1. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableDeclarator → NO_COVERAGE |
VariableDeclarator(); |
| 1314 | } | |
| 1315 |
2
1. FieldDeclaration : Substituted 83 with 84 → SURVIVED 2. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(SEMICOLON); |
| 1316 | } catch (Throwable jjte000) { | |
| 1317 |
3
1. FieldDeclaration : negated conditional → SURVIVED 2. FieldDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. FieldDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 1318 |
1
1. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1319 |
1
1. FieldDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1320 | } else { | |
| 1321 |
1
1. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1322 | } | |
| 1323 |
3
1. FieldDeclaration : negated conditional → SURVIVED 2. FieldDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. FieldDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 1324 | { | |
| 1325 | if (true) { | |
| 1326 | throw (RuntimeException) jjte000; | |
| 1327 | } | |
| 1328 | } | |
| 1329 | } | |
| 1330 |
3
1. FieldDeclaration : negated conditional → SURVIVED 2. FieldDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. FieldDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1331 | { | |
| 1332 | if (true) { | |
| 1333 | throw (ParseException) jjte000; | |
| 1334 | } | |
| 1335 | } | |
| 1336 | } | |
| 1337 | { | |
| 1338 | if (true) { | |
| 1339 | throw (Error) jjte000; | |
| 1340 | } | |
| 1341 | } | |
| 1342 | } finally { | |
| 1343 |
6
1. FieldDeclaration : negated conditional → SURVIVED 2. FieldDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. FieldDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. FieldDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. FieldDeclaration : negated conditional → KILLED 6. FieldDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1344 |
4
1. FieldDeclaration : Substituted 1 with 0 → SURVIVED 2. FieldDeclaration : Substituted 1 with 0 → SURVIVED 3. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. FieldDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1345 | } | |
| 1346 | } | |
| 1347 | } | |
| 1348 | ||
| 1349 | final public void VariableDeclarator() throws ParseException { | |
| 1350 | /*@bgen(jjtree) VariableDeclarator */ | |
| 1351 |
2
1. VariableDeclarator : Substituted 17 with 18 → SURVIVED 2. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTVARIABLEDECLARATOR); |
| 1352 |
1
1. VariableDeclarator : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 1353 |
1
1. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1354 | try { | |
| 1355 |
1
1. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableDeclaratorId → KILLED |
VariableDeclaratorId(); |
| 1356 |
7
1. VariableDeclarator : Substituted -1 with 0 → SURVIVED 2. VariableDeclarator : negated conditional → SURVIVED 3. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. VariableDeclarator : removed conditional - replaced equality check with false → SURVIVED 5. VariableDeclarator : removed conditional - replaced equality check with true → SURVIVED 6. VariableDeclarator : RemoveSwitch 0 mutation → SURVIVED 7. VariableDeclarator : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1357 | case ASSIGN: | |
| 1358 |
2
1. VariableDeclarator : Substituted 87 with 88 → NO_COVERAGE 2. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(ASSIGN); |
| 1359 |
1
1. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableInitializer → NO_COVERAGE |
VariableInitializer(); |
| 1360 | break; | |
| 1361 | default: | |
| 1362 | ; | |
| 1363 | } | |
| 1364 | } catch (Throwable jjte000) { | |
| 1365 |
3
1. VariableDeclarator : negated conditional → SURVIVED 2. VariableDeclarator : removed conditional - replaced equality check with false → SURVIVED 3. VariableDeclarator : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 1366 |
1
1. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1367 |
1
1. VariableDeclarator : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1368 | } else { | |
| 1369 |
1
1. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1370 | } | |
| 1371 |
3
1. VariableDeclarator : removed conditional - replaced equality check with false → SURVIVED 2. VariableDeclarator : negated conditional → KILLED 3. VariableDeclarator : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 1372 | { | |
| 1373 | if (true) { | |
| 1374 | throw (RuntimeException) jjte000; | |
| 1375 | } | |
| 1376 | } | |
| 1377 | } | |
| 1378 |
3
1. VariableDeclarator : removed conditional - replaced equality check with false → SURVIVED 2. VariableDeclarator : negated conditional → KILLED 3. VariableDeclarator : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 1379 | { | |
| 1380 | if (true) { | |
| 1381 | throw (ParseException) jjte000; | |
| 1382 | } | |
| 1383 | } | |
| 1384 | } | |
| 1385 | { | |
| 1386 | if (true) { | |
| 1387 | throw (Error) jjte000; | |
| 1388 | } | |
| 1389 | } | |
| 1390 | } finally { | |
| 1391 |
6
1. VariableDeclarator : negated conditional → SURVIVED 2. VariableDeclarator : removed conditional - replaced equality check with false → SURVIVED 3. VariableDeclarator : removed conditional - replaced equality check with false → SURVIVED 4. VariableDeclarator : removed conditional - replaced equality check with true → SURVIVED 5. VariableDeclarator : negated conditional → KILLED 6. VariableDeclarator : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1392 |
4
1. VariableDeclarator : Substituted 1 with 0 → SURVIVED 2. VariableDeclarator : Substituted 1 with 0 → SURVIVED 3. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. VariableDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1393 | } | |
| 1394 | } | |
| 1395 | } | |
| 1396 | ||
| 1397 | final public void VariableDeclaratorId() throws ParseException { | |
| 1398 | /*@bgen(jjtree) VariableDeclaratorId */ | |
| 1399 |
2
1. VariableDeclaratorId : Substituted 18 with 19 → SURVIVED 2. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTVARIABLEDECLARATORID); |
| 1400 |
1
1. VariableDeclaratorId : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 1401 |
1
1. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1402 | try { | |
| 1403 |
2
1. VariableDeclaratorId : Substituted 74 with 75 → SURVIVED 2. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(IDENTIFIER); |
| 1404 | label_12:while (true) { | |
| 1405 |
7
1. VariableDeclaratorId : Substituted -1 with 0 → SURVIVED 2. VariableDeclaratorId : negated conditional → SURVIVED 3. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. VariableDeclaratorId : removed conditional - replaced equality check with false → SURVIVED 5. VariableDeclaratorId : removed conditional - replaced equality check with true → SURVIVED 6. VariableDeclaratorId : RemoveSwitch 0 mutation → SURVIVED 7. VariableDeclaratorId : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1406 | case LBRACKET: | |
| 1407 | ; | |
| 1408 | break; | |
| 1409 | default: | |
| 1410 | break label_12; | |
| 1411 | } | |
| 1412 |
2
1. VariableDeclaratorId : Substituted 81 with 82 → NO_COVERAGE 2. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 1413 |
2
1. VariableDeclaratorId : Substituted 82 with 83 → NO_COVERAGE 2. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 1414 | } | |
| 1415 | } finally { | |
| 1416 |
6
1. VariableDeclaratorId : negated conditional → SURVIVED 2. VariableDeclaratorId : negated conditional → SURVIVED 3. VariableDeclaratorId : removed conditional - replaced equality check with false → SURVIVED 4. VariableDeclaratorId : removed conditional - replaced equality check with false → SURVIVED 5. VariableDeclaratorId : removed conditional - replaced equality check with true → SURVIVED 6. VariableDeclaratorId : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 1417 |
4
1. VariableDeclaratorId : Substituted 1 with 0 → SURVIVED 2. VariableDeclaratorId : Substituted 1 with 0 → SURVIVED 3. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. VariableDeclaratorId : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1418 | } | |
| 1419 | } | |
| 1420 | } | |
| 1421 | ||
| 1422 | final public void VariableInitializer() throws ParseException { | |
| 1423 | /*@bgen(jjtree) VariableInitializer */ | |
| 1424 |
2
1. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. VariableInitializer : Substituted 19 with 20 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTVARIABLEINITIALIZER); |
| 1425 |
1
1. VariableInitializer : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1426 |
1
1. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1427 | try { | |
| 1428 |
94
1. VariableInitializer : Substituted -1 with 0 → SURVIVED 2. VariableInitializer : negated conditional → SURVIVED 3. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. VariableInitializer : removed conditional - replaced equality check with false → SURVIVED 5. VariableInitializer : removed conditional - replaced equality check with true → SURVIVED 6. VariableInitializer : RemoveSwitch 0 mutation → SURVIVED 7. VariableInitializer : RemoveSwitch 1 mutation → SURVIVED 8. VariableInitializer : RemoveSwitch 10 mutation → SURVIVED 9. VariableInitializer : RemoveSwitch 11 mutation → SURVIVED 10. VariableInitializer : RemoveSwitch 12 mutation → SURVIVED 11. VariableInitializer : RemoveSwitch 13 mutation → SURVIVED 12. VariableInitializer : RemoveSwitch 14 mutation → SURVIVED 13. VariableInitializer : RemoveSwitch 15 mutation → SURVIVED 14. VariableInitializer : RemoveSwitch 16 mutation → SURVIVED 15. VariableInitializer : RemoveSwitch 17 mutation → SURVIVED 16. VariableInitializer : RemoveSwitch 18 mutation → SURVIVED 17. VariableInitializer : RemoveSwitch 19 mutation → SURVIVED 18. VariableInitializer : RemoveSwitch 2 mutation → SURVIVED 19. VariableInitializer : RemoveSwitch 20 mutation → SURVIVED 20. VariableInitializer : RemoveSwitch 21 mutation → SURVIVED 21. VariableInitializer : RemoveSwitch 22 mutation → SURVIVED 22. VariableInitializer : RemoveSwitch 23 mutation → SURVIVED 23. VariableInitializer : RemoveSwitch 24 mutation → SURVIVED 24. VariableInitializer : RemoveSwitch 25 mutation → SURVIVED 25. VariableInitializer : RemoveSwitch 26 mutation → SURVIVED 26. VariableInitializer : RemoveSwitch 27 mutation → SURVIVED 27. VariableInitializer : RemoveSwitch 28 mutation → SURVIVED 28. VariableInitializer : RemoveSwitch 29 mutation → SURVIVED 29. VariableInitializer : RemoveSwitch 3 mutation → SURVIVED 30. VariableInitializer : RemoveSwitch 30 mutation → SURVIVED 31. VariableInitializer : RemoveSwitch 31 mutation → SURVIVED 32. VariableInitializer : RemoveSwitch 32 mutation → SURVIVED 33. VariableInitializer : RemoveSwitch 33 mutation → SURVIVED 34. VariableInitializer : RemoveSwitch 34 mutation → SURVIVED 35. VariableInitializer : RemoveSwitch 35 mutation → SURVIVED 36. VariableInitializer : RemoveSwitch 36 mutation → SURVIVED 37. VariableInitializer : RemoveSwitch 37 mutation → SURVIVED 38. VariableInitializer : RemoveSwitch 38 mutation → SURVIVED 39. VariableInitializer : RemoveSwitch 39 mutation → SURVIVED 40. VariableInitializer : RemoveSwitch 4 mutation → SURVIVED 41. VariableInitializer : RemoveSwitch 40 mutation → SURVIVED 42. VariableInitializer : RemoveSwitch 41 mutation → SURVIVED 43. VariableInitializer : RemoveSwitch 42 mutation → SURVIVED 44. VariableInitializer : RemoveSwitch 43 mutation → SURVIVED 45. VariableInitializer : RemoveSwitch 44 mutation → SURVIVED 46. VariableInitializer : RemoveSwitch 45 mutation → SURVIVED 47. VariableInitializer : RemoveSwitch 46 mutation → SURVIVED 48. VariableInitializer : RemoveSwitch 47 mutation → SURVIVED 49. VariableInitializer : RemoveSwitch 48 mutation → SURVIVED 50. VariableInitializer : RemoveSwitch 49 mutation → SURVIVED 51. VariableInitializer : RemoveSwitch 5 mutation → SURVIVED 52. VariableInitializer : RemoveSwitch 50 mutation → SURVIVED 53. VariableInitializer : RemoveSwitch 51 mutation → SURVIVED 54. VariableInitializer : RemoveSwitch 52 mutation → SURVIVED 55. VariableInitializer : RemoveSwitch 53 mutation → SURVIVED 56. VariableInitializer : RemoveSwitch 54 mutation → SURVIVED 57. VariableInitializer : RemoveSwitch 55 mutation → SURVIVED 58. VariableInitializer : RemoveSwitch 56 mutation → SURVIVED 59. VariableInitializer : RemoveSwitch 57 mutation → SURVIVED 60. VariableInitializer : RemoveSwitch 58 mutation → SURVIVED 61. VariableInitializer : RemoveSwitch 59 mutation → SURVIVED 62. VariableInitializer : RemoveSwitch 6 mutation → SURVIVED 63. VariableInitializer : RemoveSwitch 60 mutation → SURVIVED 64. VariableInitializer : RemoveSwitch 61 mutation → SURVIVED 65. VariableInitializer : RemoveSwitch 62 mutation → SURVIVED 66. VariableInitializer : RemoveSwitch 63 mutation → SURVIVED 67. VariableInitializer : RemoveSwitch 64 mutation → SURVIVED 68. VariableInitializer : RemoveSwitch 65 mutation → SURVIVED 69. VariableInitializer : RemoveSwitch 66 mutation → SURVIVED 70. VariableInitializer : RemoveSwitch 67 mutation → SURVIVED 71. VariableInitializer : RemoveSwitch 68 mutation → SURVIVED 72. VariableInitializer : RemoveSwitch 69 mutation → SURVIVED 73. VariableInitializer : RemoveSwitch 7 mutation → SURVIVED 74. VariableInitializer : RemoveSwitch 70 mutation → SURVIVED 75. VariableInitializer : RemoveSwitch 71 mutation → SURVIVED 76. VariableInitializer : RemoveSwitch 72 mutation → SURVIVED 77. VariableInitializer : RemoveSwitch 73 mutation → SURVIVED 78. VariableInitializer : RemoveSwitch 74 mutation → SURVIVED 79. VariableInitializer : RemoveSwitch 75 mutation → SURVIVED 80. VariableInitializer : RemoveSwitch 76 mutation → SURVIVED 81. VariableInitializer : RemoveSwitch 77 mutation → SURVIVED 82. VariableInitializer : RemoveSwitch 78 mutation → SURVIVED 83. VariableInitializer : RemoveSwitch 79 mutation → SURVIVED 84. VariableInitializer : RemoveSwitch 8 mutation → SURVIVED 85. VariableInitializer : RemoveSwitch 80 mutation → SURVIVED 86. VariableInitializer : RemoveSwitch 81 mutation → SURVIVED 87. VariableInitializer : RemoveSwitch 82 mutation → SURVIVED 88. VariableInitializer : RemoveSwitch 83 mutation → SURVIVED 89. VariableInitializer : RemoveSwitch 84 mutation → SURVIVED 90. VariableInitializer : RemoveSwitch 85 mutation → SURVIVED 91. VariableInitializer : RemoveSwitch 86 mutation → SURVIVED 92. VariableInitializer : RemoveSwitch 87 mutation → SURVIVED 93. VariableInitializer : RemoveSwitch 9 mutation → SURVIVED 94. VariableInitializer : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1429 | case LBRACE: | |
| 1430 |
1
1. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ArrayInitializer → NO_COVERAGE |
ArrayInitializer(); |
| 1431 | break; | |
| 1432 | case BOOLEAN: | |
| 1433 | case BYTE: | |
| 1434 | case CHAR: | |
| 1435 | case DOUBLE: | |
| 1436 | case FALSE: | |
| 1437 | case FLOAT: | |
| 1438 | case INT: | |
| 1439 | case LONG: | |
| 1440 | case NEW: | |
| 1441 | case NULL: | |
| 1442 | case SHORT: | |
| 1443 | case SUPER: | |
| 1444 | case THIS: | |
| 1445 | case TRUE: | |
| 1446 | case VOID: | |
| 1447 | case INTEGER_LITERAL: | |
| 1448 | case FLOATING_POINT_LITERAL: | |
| 1449 | case CHARACTER_LITERAL: | |
| 1450 | case STRING_LITERAL: | |
| 1451 | case IDENTIFIER: | |
| 1452 | case LPAREN: | |
| 1453 | case BANG: | |
| 1454 | case TILDE: | |
| 1455 | case INCR: | |
| 1456 | case DECR: | |
| 1457 | case PLUS: | |
| 1458 | case MINUS: | |
| 1459 |
1
1. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 1460 | break; | |
| 1461 | default: | |
| 1462 |
2
1. VariableInitializer : Substituted -1 with 0 → SURVIVED 2. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 1463 |
1
1. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 1464 | } | |
| 1465 | } catch (Throwable jjte000) { | |
| 1466 |
3
1. VariableInitializer : removed conditional - replaced equality check with true → SURVIVED 2. VariableInitializer : negated conditional → KILLED 3. VariableInitializer : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1467 |
1
1. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1468 |
1
1. VariableInitializer : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1469 | } else { | |
| 1470 |
1
1. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1471 | } | |
| 1472 |
3
1. VariableInitializer : negated conditional → SURVIVED 2. VariableInitializer : removed conditional - replaced equality check with false → SURVIVED 3. VariableInitializer : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 1473 | { | |
| 1474 | if (true) { | |
| 1475 | throw (RuntimeException) jjte000; | |
| 1476 | } | |
| 1477 | } | |
| 1478 | } | |
| 1479 |
3
1. VariableInitializer : negated conditional → SURVIVED 2. VariableInitializer : removed conditional - replaced equality check with false → SURVIVED 3. VariableInitializer : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1480 | { | |
| 1481 | if (true) { | |
| 1482 | throw (ParseException) jjte000; | |
| 1483 | } | |
| 1484 | } | |
| 1485 | } | |
| 1486 | { | |
| 1487 | if (true) { | |
| 1488 | throw (Error) jjte000; | |
| 1489 | } | |
| 1490 | } | |
| 1491 | } finally { | |
| 1492 |
6
1. VariableInitializer : negated conditional → SURVIVED 2. VariableInitializer : removed conditional - replaced equality check with false → SURVIVED 3. VariableInitializer : removed conditional - replaced equality check with false → SURVIVED 4. VariableInitializer : removed conditional - replaced equality check with true → SURVIVED 5. VariableInitializer : negated conditional → KILLED 6. VariableInitializer : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1493 |
4
1. VariableInitializer : Substituted 1 with 0 → SURVIVED 2. VariableInitializer : Substituted 1 with 0 → SURVIVED 3. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. VariableInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1494 | } | |
| 1495 | } | |
| 1496 | } | |
| 1497 | ||
| 1498 | final public void ArrayInitializer() throws ParseException { | |
| 1499 | /*@bgen(jjtree) ArrayInitializer */ | |
| 1500 |
2
1. ArrayInitializer : Substituted 20 with 21 → SURVIVED 2. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTARRAYINITIALIZER); |
| 1501 |
1
1. ArrayInitializer : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1502 |
1
1. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1503 | try { | |
| 1504 |
2
1. ArrayInitializer : Substituted 79 with 80 → SURVIVED 2. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LBRACE); |
| 1505 |
94
1. ArrayInitializer : Substituted -1 with 0 → SURVIVED 2. ArrayInitializer : negated conditional → SURVIVED 3. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 5. ArrayInitializer : removed conditional - replaced equality check with true → SURVIVED 6. ArrayInitializer : RemoveSwitch 0 mutation → SURVIVED 7. ArrayInitializer : RemoveSwitch 1 mutation → SURVIVED 8. ArrayInitializer : RemoveSwitch 10 mutation → SURVIVED 9. ArrayInitializer : RemoveSwitch 11 mutation → SURVIVED 10. ArrayInitializer : RemoveSwitch 12 mutation → SURVIVED 11. ArrayInitializer : RemoveSwitch 13 mutation → SURVIVED 12. ArrayInitializer : RemoveSwitch 14 mutation → SURVIVED 13. ArrayInitializer : RemoveSwitch 15 mutation → SURVIVED 14. ArrayInitializer : RemoveSwitch 16 mutation → SURVIVED 15. ArrayInitializer : RemoveSwitch 17 mutation → SURVIVED 16. ArrayInitializer : RemoveSwitch 18 mutation → SURVIVED 17. ArrayInitializer : RemoveSwitch 19 mutation → SURVIVED 18. ArrayInitializer : RemoveSwitch 2 mutation → SURVIVED 19. ArrayInitializer : RemoveSwitch 20 mutation → SURVIVED 20. ArrayInitializer : RemoveSwitch 21 mutation → SURVIVED 21. ArrayInitializer : RemoveSwitch 22 mutation → SURVIVED 22. ArrayInitializer : RemoveSwitch 23 mutation → SURVIVED 23. ArrayInitializer : RemoveSwitch 24 mutation → SURVIVED 24. ArrayInitializer : RemoveSwitch 25 mutation → SURVIVED 25. ArrayInitializer : RemoveSwitch 26 mutation → SURVIVED 26. ArrayInitializer : RemoveSwitch 27 mutation → SURVIVED 27. ArrayInitializer : RemoveSwitch 28 mutation → SURVIVED 28. ArrayInitializer : RemoveSwitch 29 mutation → SURVIVED 29. ArrayInitializer : RemoveSwitch 3 mutation → SURVIVED 30. ArrayInitializer : RemoveSwitch 30 mutation → SURVIVED 31. ArrayInitializer : RemoveSwitch 31 mutation → SURVIVED 32. ArrayInitializer : RemoveSwitch 32 mutation → SURVIVED 33. ArrayInitializer : RemoveSwitch 33 mutation → SURVIVED 34. ArrayInitializer : RemoveSwitch 34 mutation → SURVIVED 35. ArrayInitializer : RemoveSwitch 35 mutation → SURVIVED 36. ArrayInitializer : RemoveSwitch 36 mutation → SURVIVED 37. ArrayInitializer : RemoveSwitch 37 mutation → SURVIVED 38. ArrayInitializer : RemoveSwitch 38 mutation → SURVIVED 39. ArrayInitializer : RemoveSwitch 39 mutation → SURVIVED 40. ArrayInitializer : RemoveSwitch 4 mutation → SURVIVED 41. ArrayInitializer : RemoveSwitch 40 mutation → SURVIVED 42. ArrayInitializer : RemoveSwitch 41 mutation → SURVIVED 43. ArrayInitializer : RemoveSwitch 42 mutation → SURVIVED 44. ArrayInitializer : RemoveSwitch 43 mutation → SURVIVED 45. ArrayInitializer : RemoveSwitch 44 mutation → SURVIVED 46. ArrayInitializer : RemoveSwitch 45 mutation → SURVIVED 47. ArrayInitializer : RemoveSwitch 46 mutation → SURVIVED 48. ArrayInitializer : RemoveSwitch 47 mutation → SURVIVED 49. ArrayInitializer : RemoveSwitch 48 mutation → SURVIVED 50. ArrayInitializer : RemoveSwitch 49 mutation → SURVIVED 51. ArrayInitializer : RemoveSwitch 5 mutation → SURVIVED 52. ArrayInitializer : RemoveSwitch 50 mutation → SURVIVED 53. ArrayInitializer : RemoveSwitch 51 mutation → SURVIVED 54. ArrayInitializer : RemoveSwitch 52 mutation → SURVIVED 55. ArrayInitializer : RemoveSwitch 53 mutation → SURVIVED 56. ArrayInitializer : RemoveSwitch 54 mutation → SURVIVED 57. ArrayInitializer : RemoveSwitch 55 mutation → SURVIVED 58. ArrayInitializer : RemoveSwitch 56 mutation → SURVIVED 59. ArrayInitializer : RemoveSwitch 57 mutation → SURVIVED 60. ArrayInitializer : RemoveSwitch 58 mutation → SURVIVED 61. ArrayInitializer : RemoveSwitch 59 mutation → SURVIVED 62. ArrayInitializer : RemoveSwitch 6 mutation → SURVIVED 63. ArrayInitializer : RemoveSwitch 60 mutation → SURVIVED 64. ArrayInitializer : RemoveSwitch 61 mutation → SURVIVED 65. ArrayInitializer : RemoveSwitch 62 mutation → SURVIVED 66. ArrayInitializer : RemoveSwitch 63 mutation → SURVIVED 67. ArrayInitializer : RemoveSwitch 64 mutation → SURVIVED 68. ArrayInitializer : RemoveSwitch 65 mutation → SURVIVED 69. ArrayInitializer : RemoveSwitch 66 mutation → SURVIVED 70. ArrayInitializer : RemoveSwitch 67 mutation → SURVIVED 71. ArrayInitializer : RemoveSwitch 68 mutation → SURVIVED 72. ArrayInitializer : RemoveSwitch 69 mutation → SURVIVED 73. ArrayInitializer : RemoveSwitch 7 mutation → SURVIVED 74. ArrayInitializer : RemoveSwitch 70 mutation → SURVIVED 75. ArrayInitializer : RemoveSwitch 71 mutation → SURVIVED 76. ArrayInitializer : RemoveSwitch 72 mutation → SURVIVED 77. ArrayInitializer : RemoveSwitch 73 mutation → SURVIVED 78. ArrayInitializer : RemoveSwitch 74 mutation → SURVIVED 79. ArrayInitializer : RemoveSwitch 75 mutation → SURVIVED 80. ArrayInitializer : RemoveSwitch 76 mutation → SURVIVED 81. ArrayInitializer : RemoveSwitch 77 mutation → SURVIVED 82. ArrayInitializer : RemoveSwitch 78 mutation → SURVIVED 83. ArrayInitializer : RemoveSwitch 79 mutation → SURVIVED 84. ArrayInitializer : RemoveSwitch 8 mutation → SURVIVED 85. ArrayInitializer : RemoveSwitch 80 mutation → SURVIVED 86. ArrayInitializer : RemoveSwitch 81 mutation → SURVIVED 87. ArrayInitializer : RemoveSwitch 82 mutation → SURVIVED 88. ArrayInitializer : RemoveSwitch 83 mutation → SURVIVED 89. ArrayInitializer : RemoveSwitch 84 mutation → SURVIVED 90. ArrayInitializer : RemoveSwitch 85 mutation → SURVIVED 91. ArrayInitializer : RemoveSwitch 86 mutation → SURVIVED 92. ArrayInitializer : RemoveSwitch 87 mutation → SURVIVED 93. ArrayInitializer : RemoveSwitch 9 mutation → SURVIVED 94. ArrayInitializer : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1506 | case BOOLEAN: | |
| 1507 | case BYTE: | |
| 1508 | case CHAR: | |
| 1509 | case DOUBLE: | |
| 1510 | case FALSE: | |
| 1511 | case FLOAT: | |
| 1512 | case INT: | |
| 1513 | case LONG: | |
| 1514 | case NEW: | |
| 1515 | case NULL: | |
| 1516 | case SHORT: | |
| 1517 | case SUPER: | |
| 1518 | case THIS: | |
| 1519 | case TRUE: | |
| 1520 | case VOID: | |
| 1521 | case INTEGER_LITERAL: | |
| 1522 | case FLOATING_POINT_LITERAL: | |
| 1523 | case CHARACTER_LITERAL: | |
| 1524 | case STRING_LITERAL: | |
| 1525 | case IDENTIFIER: | |
| 1526 | case LPAREN: | |
| 1527 | case LBRACE: | |
| 1528 | case BANG: | |
| 1529 | case TILDE: | |
| 1530 | case INCR: | |
| 1531 | case DECR: | |
| 1532 | case PLUS: | |
| 1533 | case MINUS: | |
| 1534 |
1
1. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableInitializer → NO_COVERAGE |
VariableInitializer(); |
| 1535 | label_13: | |
| 1536 | while (true) { | |
| 1537 |
5
1. ArrayInitializer : Substituted 2 with 3 → NO_COVERAGE 2. ArrayInitializer : negated conditional → NO_COVERAGE 3. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_5 → NO_COVERAGE 4. ArrayInitializer : removed conditional - replaced equality check with false → NO_COVERAGE 5. ArrayInitializer : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_5(2)) { |
| 1538 | ; | |
| 1539 | } else { | |
| 1540 | break label_13; | |
| 1541 | } | |
| 1542 |
2
1. ArrayInitializer : Substituted 84 with 85 → NO_COVERAGE 2. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 1543 |
1
1. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableInitializer → NO_COVERAGE |
VariableInitializer(); |
| 1544 | } | |
| 1545 | break; | |
| 1546 | default: | |
| 1547 | ; | |
| 1548 | } | |
| 1549 |
7
1. ArrayInitializer : Substituted -1 with 0 → NO_COVERAGE 2. ArrayInitializer : negated conditional → NO_COVERAGE 3. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ArrayInitializer : removed conditional - replaced equality check with false → NO_COVERAGE 5. ArrayInitializer : removed conditional - replaced equality check with true → NO_COVERAGE 6. ArrayInitializer : RemoveSwitch 0 mutation → NO_COVERAGE 7. ArrayInitializer : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1550 | case COMMA: | |
| 1551 |
2
1. ArrayInitializer : Substituted 84 with 85 → NO_COVERAGE 2. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 1552 | break; | |
| 1553 | default: | |
| 1554 | ; | |
| 1555 | } | |
| 1556 |
2
1. ArrayInitializer : Substituted 80 with 81 → NO_COVERAGE 2. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 1557 | } catch (Throwable jjte000) { | |
| 1558 |
3
1. ArrayInitializer : removed conditional - replaced equality check with true → SURVIVED 2. ArrayInitializer : negated conditional → KILLED 3. ArrayInitializer : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1559 |
1
1. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1560 |
1
1. ArrayInitializer : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1561 | } else { | |
| 1562 |
1
1. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1563 | } | |
| 1564 |
3
1. ArrayInitializer : negated conditional → SURVIVED 2. ArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 3. ArrayInitializer : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 1565 | { | |
| 1566 | if (true) { | |
| 1567 | throw (RuntimeException) jjte000; | |
| 1568 | } | |
| 1569 | } | |
| 1570 | } | |
| 1571 |
3
1. ArrayInitializer : negated conditional → SURVIVED 2. ArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 3. ArrayInitializer : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1572 | { | |
| 1573 | if (true) { | |
| 1574 | throw (ParseException) jjte000; | |
| 1575 | } | |
| 1576 | } | |
| 1577 | } | |
| 1578 | { | |
| 1579 | if (true) { | |
| 1580 | throw (Error) jjte000; | |
| 1581 | } | |
| 1582 | } | |
| 1583 | } finally { | |
| 1584 |
6
1. ArrayInitializer : negated conditional → SURVIVED 2. ArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 3. ArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 4. ArrayInitializer : removed conditional - replaced equality check with true → SURVIVED 5. ArrayInitializer : negated conditional → KILLED 6. ArrayInitializer : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1585 |
4
1. ArrayInitializer : Substituted 1 with 0 → SURVIVED 2. ArrayInitializer : Substituted 1 with 0 → SURVIVED 3. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1586 | } | |
| 1587 | } | |
| 1588 | } | |
| 1589 | ||
| 1590 | final public void MethodDeclaration(int modifiers) throws ParseException { | |
| 1591 | /*@bgen(jjtree) MethodDeclaration */ | |
| 1592 |
2
1. MethodDeclaration : Substituted 21 with 22 → SURVIVED 2. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMETHODDECLARATION); |
| 1593 |
1
1. MethodDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1594 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1595 | try { | |
| 1596 |
7
1. MethodDeclaration : Substituted -1 with 0 → SURVIVED 2. MethodDeclaration : negated conditional → SURVIVED 3. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. MethodDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. MethodDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. MethodDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. MethodDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1597 | case LT: | |
| 1598 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeParameters → NO_COVERAGE |
TypeParameters(); |
| 1599 | break; | |
| 1600 | default: | |
| 1601 | ; | |
| 1602 | } | |
| 1603 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ResultType → SURVIVED |
ResultType(); |
| 1604 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MethodDeclarator → SURVIVED |
MethodDeclarator(); |
| 1605 |
7
1. MethodDeclaration : Substituted -1 with 0 → SURVIVED 2. MethodDeclaration : negated conditional → SURVIVED 3. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. MethodDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. MethodDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. MethodDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. MethodDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1606 | case THROWS: | |
| 1607 |
2
1. MethodDeclaration : Substituted 59 with 60 → NO_COVERAGE 2. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(THROWS); |
| 1608 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::NameList → NO_COVERAGE |
NameList(); |
| 1609 | break; | |
| 1610 | default: | |
| 1611 | ; | |
| 1612 | } | |
| 1613 |
8
1. MethodDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. MethodDeclaration : negated conditional → NO_COVERAGE 3. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. MethodDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. MethodDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. MethodDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. MethodDeclaration : RemoveSwitch 1 mutation → NO_COVERAGE 8. MethodDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1614 | case LBRACE: | |
| 1615 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Block → NO_COVERAGE |
Block(); |
| 1616 | break; | |
| 1617 | case SEMICOLON: | |
| 1618 |
2
1. MethodDeclaration : Substituted 83 with 84 → NO_COVERAGE 2. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 1619 | break; | |
| 1620 | default: | |
| 1621 |
2
1. MethodDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 1622 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 1623 | } | |
| 1624 | } catch (Throwable jjte000) { | |
| 1625 |
3
1. MethodDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. MethodDeclaration : negated conditional → KILLED 3. MethodDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1626 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1627 |
1
1. MethodDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1628 | } else { | |
| 1629 |
1
1. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1630 | } | |
| 1631 |
3
1. MethodDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. MethodDeclaration : negated conditional → KILLED 3. MethodDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 1632 | { | |
| 1633 | if (true) { | |
| 1634 | throw (RuntimeException) jjte000; | |
| 1635 | } | |
| 1636 | } | |
| 1637 | } | |
| 1638 |
3
1. MethodDeclaration : negated conditional → SURVIVED 2. MethodDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. MethodDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1639 | { | |
| 1640 | if (true) { | |
| 1641 | throw (ParseException) jjte000; | |
| 1642 | } | |
| 1643 | } | |
| 1644 | } | |
| 1645 | { | |
| 1646 | if (true) { | |
| 1647 | throw (Error) jjte000; | |
| 1648 | } | |
| 1649 | } | |
| 1650 | } finally { | |
| 1651 |
6
1. MethodDeclaration : negated conditional → SURVIVED 2. MethodDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. MethodDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. MethodDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. MethodDeclaration : negated conditional → KILLED 6. MethodDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1652 |
4
1. MethodDeclaration : Substituted 1 with 0 → SURVIVED 2. MethodDeclaration : Substituted 1 with 0 → SURVIVED 3. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MethodDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1653 | } | |
| 1654 | } | |
| 1655 | } | |
| 1656 | ||
| 1657 | final public void MethodDeclarator() throws ParseException { | |
| 1658 | /*@bgen(jjtree) MethodDeclarator */ | |
| 1659 |
2
1. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. MethodDeclarator : Substituted 22 with 23 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMETHODDECLARATOR); |
| 1660 |
1
1. MethodDeclarator : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 1661 |
1
1. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1662 | try { | |
| 1663 |
2
1. MethodDeclarator : Substituted 74 with 75 → SURVIVED 2. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IDENTIFIER); |
| 1664 |
1
1. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::FormalParameters → SURVIVED |
FormalParameters(); |
| 1665 | label_14:while (true) { | |
| 1666 |
7
1. MethodDeclarator : Substituted -1 with 0 → NO_COVERAGE 2. MethodDeclarator : negated conditional → NO_COVERAGE 3. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. MethodDeclarator : removed conditional - replaced equality check with false → NO_COVERAGE 5. MethodDeclarator : removed conditional - replaced equality check with true → NO_COVERAGE 6. MethodDeclarator : RemoveSwitch 0 mutation → NO_COVERAGE 7. MethodDeclarator : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1667 | case LBRACKET: | |
| 1668 | ; | |
| 1669 | break; | |
| 1670 | default: | |
| 1671 | break label_14; | |
| 1672 | } | |
| 1673 |
2
1. MethodDeclarator : Substituted 81 with 82 → NO_COVERAGE 2. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 1674 |
2
1. MethodDeclarator : Substituted 82 with 83 → NO_COVERAGE 2. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 1675 | } | |
| 1676 | } catch (Throwable jjte000) { | |
| 1677 |
3
1. MethodDeclarator : removed conditional - replaced equality check with true → SURVIVED 2. MethodDeclarator : negated conditional → KILLED 3. MethodDeclarator : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1678 |
1
1. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1679 |
1
1. MethodDeclarator : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1680 | } else { | |
| 1681 |
1
1. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1682 | } | |
| 1683 |
3
1. MethodDeclarator : negated conditional → SURVIVED 2. MethodDeclarator : removed conditional - replaced equality check with false → SURVIVED 3. MethodDeclarator : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 1684 | { | |
| 1685 | if (true) { | |
| 1686 | throw (RuntimeException) jjte000; | |
| 1687 | } | |
| 1688 | } | |
| 1689 | } | |
| 1690 |
3
1. MethodDeclarator : negated conditional → SURVIVED 2. MethodDeclarator : removed conditional - replaced equality check with false → SURVIVED 3. MethodDeclarator : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1691 | { | |
| 1692 | if (true) { | |
| 1693 | throw (ParseException) jjte000; | |
| 1694 | } | |
| 1695 | } | |
| 1696 | } | |
| 1697 | { | |
| 1698 | if (true) { | |
| 1699 | throw (Error) jjte000; | |
| 1700 | } | |
| 1701 | } | |
| 1702 | } finally { | |
| 1703 |
6
1. MethodDeclarator : negated conditional → SURVIVED 2. MethodDeclarator : removed conditional - replaced equality check with false → SURVIVED 3. MethodDeclarator : removed conditional - replaced equality check with false → SURVIVED 4. MethodDeclarator : removed conditional - replaced equality check with true → SURVIVED 5. MethodDeclarator : negated conditional → KILLED 6. MethodDeclarator : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1704 |
4
1. MethodDeclarator : Substituted 1 with 0 → SURVIVED 2. MethodDeclarator : Substituted 1 with 0 → SURVIVED 3. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MethodDeclarator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1705 | } | |
| 1706 | } | |
| 1707 | } | |
| 1708 | ||
| 1709 | final public void FormalParameters() throws ParseException { | |
| 1710 | /*@bgen(jjtree) FormalParameters */ | |
| 1711 |
2
1. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. FormalParameters : Substituted 23 with 24 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTFORMALPARAMETERS); |
| 1712 |
1
1. FormalParameters : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1713 |
1
1. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1714 | try { | |
| 1715 |
2
1. FormalParameters : Substituted 77 with 78 → SURVIVED 2. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 1716 |
16
1. FormalParameters : Substituted -1 with 0 → SURVIVED 2. FormalParameters : negated conditional → SURVIVED 3. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. FormalParameters : removed conditional - replaced equality check with false → SURVIVED 5. FormalParameters : removed conditional - replaced equality check with true → SURVIVED 6. FormalParameters : RemoveSwitch 0 mutation → SURVIVED 7. FormalParameters : RemoveSwitch 1 mutation → SURVIVED 8. FormalParameters : RemoveSwitch 2 mutation → SURVIVED 9. FormalParameters : RemoveSwitch 3 mutation → SURVIVED 10. FormalParameters : RemoveSwitch 4 mutation → SURVIVED 11. FormalParameters : RemoveSwitch 5 mutation → SURVIVED 12. FormalParameters : RemoveSwitch 6 mutation → SURVIVED 13. FormalParameters : RemoveSwitch 7 mutation → SURVIVED 14. FormalParameters : RemoveSwitch 8 mutation → SURVIVED 15. FormalParameters : RemoveSwitch 9 mutation → SURVIVED 16. FormalParameters : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1717 | case BOOLEAN: | |
| 1718 | case BYTE: | |
| 1719 | case CHAR: | |
| 1720 | case DOUBLE: | |
| 1721 | case FINAL: | |
| 1722 | case FLOAT: | |
| 1723 | case INT: | |
| 1724 | case LONG: | |
| 1725 | case SHORT: | |
| 1726 | case IDENTIFIER: | |
| 1727 |
1
1. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::FormalParameter → NO_COVERAGE |
FormalParameter(); |
| 1728 | label_15: | |
| 1729 | while (true) { | |
| 1730 |
7
1. FormalParameters : Substituted -1 with 0 → NO_COVERAGE 2. FormalParameters : negated conditional → NO_COVERAGE 3. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. FormalParameters : removed conditional - replaced equality check with false → NO_COVERAGE 5. FormalParameters : removed conditional - replaced equality check with true → NO_COVERAGE 6. FormalParameters : RemoveSwitch 0 mutation → NO_COVERAGE 7. FormalParameters : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1731 | case COMMA: | |
| 1732 | ; | |
| 1733 | break; | |
| 1734 | default: | |
| 1735 | break label_15; | |
| 1736 | } | |
| 1737 |
2
1. FormalParameters : Substituted 84 with 85 → NO_COVERAGE 2. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 1738 |
1
1. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::FormalParameter → NO_COVERAGE |
FormalParameter(); |
| 1739 | } | |
| 1740 | break; | |
| 1741 | default: | |
| 1742 | ; | |
| 1743 | } | |
| 1744 |
2
1. FormalParameters : Substituted 78 with 79 → NO_COVERAGE 2. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 1745 | } catch (Throwable jjte000) { | |
| 1746 |
3
1. FormalParameters : removed conditional - replaced equality check with true → SURVIVED 2. FormalParameters : negated conditional → KILLED 3. FormalParameters : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1747 |
1
1. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1748 |
1
1. FormalParameters : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1749 | } else { | |
| 1750 |
1
1. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1751 | } | |
| 1752 |
3
1. FormalParameters : negated conditional → SURVIVED 2. FormalParameters : removed conditional - replaced equality check with false → SURVIVED 3. FormalParameters : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 1753 | { | |
| 1754 | if (true) { | |
| 1755 | throw (RuntimeException) jjte000; | |
| 1756 | } | |
| 1757 | } | |
| 1758 | } | |
| 1759 |
3
1. FormalParameters : negated conditional → SURVIVED 2. FormalParameters : removed conditional - replaced equality check with false → SURVIVED 3. FormalParameters : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1760 | { | |
| 1761 | if (true) { | |
| 1762 | throw (ParseException) jjte000; | |
| 1763 | } | |
| 1764 | } | |
| 1765 | } | |
| 1766 | { | |
| 1767 | if (true) { | |
| 1768 | throw (Error) jjte000; | |
| 1769 | } | |
| 1770 | } | |
| 1771 | } finally { | |
| 1772 |
6
1. FormalParameters : negated conditional → SURVIVED 2. FormalParameters : removed conditional - replaced equality check with false → SURVIVED 3. FormalParameters : removed conditional - replaced equality check with false → SURVIVED 4. FormalParameters : removed conditional - replaced equality check with true → SURVIVED 5. FormalParameters : negated conditional → KILLED 6. FormalParameters : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1773 |
4
1. FormalParameters : Substituted 1 with 0 → SURVIVED 2. FormalParameters : Substituted 1 with 0 → SURVIVED 3. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. FormalParameters : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1774 | } | |
| 1775 | } | |
| 1776 | } | |
| 1777 | ||
| 1778 | final public void FormalParameter() throws ParseException { | |
| 1779 | /*@bgen(jjtree) FormalParameter */ | |
| 1780 |
2
1. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. FormalParameter : Substituted 24 with 25 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTFORMALPARAMETER); |
| 1781 |
1
1. FormalParameter : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 1782 |
1
1. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 1783 | try { | |
| 1784 |
7
1. FormalParameter : Substituted -1 with 0 → NO_COVERAGE 2. FormalParameter : negated conditional → NO_COVERAGE 3. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. FormalParameter : removed conditional - replaced equality check with false → NO_COVERAGE 5. FormalParameter : removed conditional - replaced equality check with true → NO_COVERAGE 6. FormalParameter : RemoveSwitch 0 mutation → NO_COVERAGE 7. FormalParameter : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1785 | case FINAL: | |
| 1786 |
2
1. FormalParameter : Substituted 31 with 32 → NO_COVERAGE 2. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(FINAL); |
| 1787 | break; | |
| 1788 | default: | |
| 1789 | ; | |
| 1790 | } | |
| 1791 |
1
1. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → NO_COVERAGE |
Type(); |
| 1792 |
7
1. FormalParameter : Substituted -1 with 0 → NO_COVERAGE 2. FormalParameter : negated conditional → NO_COVERAGE 3. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. FormalParameter : removed conditional - replaced equality check with false → NO_COVERAGE 5. FormalParameter : removed conditional - replaced equality check with true → NO_COVERAGE 6. FormalParameter : RemoveSwitch 0 mutation → NO_COVERAGE 7. FormalParameter : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1793 | case ELLIPSIS: | |
| 1794 |
2
1. FormalParameter : Substituted 121 with 122 → NO_COVERAGE 2. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(ELLIPSIS); |
| 1795 | break; | |
| 1796 | default: | |
| 1797 | ; | |
| 1798 | } | |
| 1799 |
1
1. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableDeclaratorId → NO_COVERAGE |
VariableDeclaratorId(); |
| 1800 | } catch (Throwable jjte000) { | |
| 1801 |
3
1. FormalParameter : negated conditional → NO_COVERAGE 2. FormalParameter : removed conditional - replaced equality check with false → NO_COVERAGE 3. FormalParameter : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 1802 |
1
1. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 1803 |
1
1. FormalParameter : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 1804 | } else { | |
| 1805 |
1
1. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1806 | } | |
| 1807 |
3
1. FormalParameter : negated conditional → NO_COVERAGE 2. FormalParameter : removed conditional - replaced equality check with false → NO_COVERAGE 3. FormalParameter : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 1808 | { | |
| 1809 | if (true) { | |
| 1810 | throw (RuntimeException) jjte000; | |
| 1811 | } | |
| 1812 | } | |
| 1813 | } | |
| 1814 |
3
1. FormalParameter : negated conditional → NO_COVERAGE 2. FormalParameter : removed conditional - replaced equality check with false → NO_COVERAGE 3. FormalParameter : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 1815 | { | |
| 1816 | if (true) { | |
| 1817 | throw (ParseException) jjte000; | |
| 1818 | } | |
| 1819 | } | |
| 1820 | } | |
| 1821 | { | |
| 1822 | if (true) { | |
| 1823 | throw (Error) jjte000; | |
| 1824 | } | |
| 1825 | } | |
| 1826 | } finally { | |
| 1827 |
6
1. FormalParameter : negated conditional → NO_COVERAGE 2. FormalParameter : negated conditional → NO_COVERAGE 3. FormalParameter : removed conditional - replaced equality check with false → NO_COVERAGE 4. FormalParameter : removed conditional - replaced equality check with false → NO_COVERAGE 5. FormalParameter : removed conditional - replaced equality check with true → NO_COVERAGE 6. FormalParameter : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 1828 |
4
1. FormalParameter : Substituted 1 with 0 → NO_COVERAGE 2. FormalParameter : Substituted 1 with 0 → NO_COVERAGE 3. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. FormalParameter : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 1829 | } | |
| 1830 | } | |
| 1831 | } | |
| 1832 | ||
| 1833 | final public void ConstructorDeclaration() throws ParseException { | |
| 1834 | /*@bgen(jjtree) ConstructorDeclaration */ | |
| 1835 |
2
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ConstructorDeclaration : Substituted 25 with 26 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCONSTRUCTORDECLARATION); |
| 1836 |
1
1. ConstructorDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1837 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1838 | try { | |
| 1839 |
7
1. ConstructorDeclaration : Substituted -1 with 0 → SURVIVED 2. ConstructorDeclaration : negated conditional → SURVIVED 3. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ConstructorDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. ConstructorDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. ConstructorDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. ConstructorDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1840 | case LT: | |
| 1841 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeParameters → NO_COVERAGE |
TypeParameters(); |
| 1842 | break; | |
| 1843 | default: | |
| 1844 | ; | |
| 1845 | } | |
| 1846 |
2
1. ConstructorDeclaration : Substituted 74 with 75 → SURVIVED 2. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IDENTIFIER); |
| 1847 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::FormalParameters → SURVIVED |
FormalParameters(); |
| 1848 |
7
1. ConstructorDeclaration : Substituted -1 with 0 → SURVIVED 2. ConstructorDeclaration : negated conditional → SURVIVED 3. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ConstructorDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. ConstructorDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. ConstructorDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. ConstructorDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1849 | case THROWS: | |
| 1850 |
2
1. ConstructorDeclaration : Substituted 59 with 60 → NO_COVERAGE 2. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(THROWS); |
| 1851 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::NameList → NO_COVERAGE |
NameList(); |
| 1852 | break; | |
| 1853 | default: | |
| 1854 | ; | |
| 1855 | } | |
| 1856 |
2
1. ConstructorDeclaration : Substituted 79 with 80 → NO_COVERAGE 2. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACE); |
| 1857 |
5
1. ConstructorDeclaration : Substituted 2147483647 with -2147483648 → NO_COVERAGE 2. ConstructorDeclaration : negated conditional → NO_COVERAGE 3. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_6 → NO_COVERAGE 4. ConstructorDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ConstructorDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_6(2147483647)) { |
| 1858 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ExplicitConstructorInvocation → NO_COVERAGE |
ExplicitConstructorInvocation(); |
| 1859 | } else { | |
| 1860 | ; | |
| 1861 | } | |
| 1862 | label_16:while (true) { | |
| 1863 |
93
1. ConstructorDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. ConstructorDeclaration : negated conditional → NO_COVERAGE 3. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ConstructorDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. ConstructorDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. ConstructorDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. ConstructorDeclaration : RemoveSwitch 1 mutation → NO_COVERAGE 8. ConstructorDeclaration : RemoveSwitch 10 mutation → NO_COVERAGE 9. ConstructorDeclaration : RemoveSwitch 11 mutation → NO_COVERAGE 10. ConstructorDeclaration : RemoveSwitch 12 mutation → NO_COVERAGE 11. ConstructorDeclaration : RemoveSwitch 13 mutation → NO_COVERAGE 12. ConstructorDeclaration : RemoveSwitch 14 mutation → NO_COVERAGE 13. ConstructorDeclaration : RemoveSwitch 15 mutation → NO_COVERAGE 14. ConstructorDeclaration : RemoveSwitch 16 mutation → NO_COVERAGE 15. ConstructorDeclaration : RemoveSwitch 17 mutation → NO_COVERAGE 16. ConstructorDeclaration : RemoveSwitch 18 mutation → NO_COVERAGE 17. ConstructorDeclaration : RemoveSwitch 19 mutation → NO_COVERAGE 18. ConstructorDeclaration : RemoveSwitch 2 mutation → NO_COVERAGE 19. ConstructorDeclaration : RemoveSwitch 20 mutation → NO_COVERAGE 20. ConstructorDeclaration : RemoveSwitch 21 mutation → NO_COVERAGE 21. ConstructorDeclaration : RemoveSwitch 22 mutation → NO_COVERAGE 22. ConstructorDeclaration : RemoveSwitch 23 mutation → NO_COVERAGE 23. ConstructorDeclaration : RemoveSwitch 24 mutation → NO_COVERAGE 24. ConstructorDeclaration : RemoveSwitch 25 mutation → NO_COVERAGE 25. ConstructorDeclaration : RemoveSwitch 26 mutation → NO_COVERAGE 26. ConstructorDeclaration : RemoveSwitch 27 mutation → NO_COVERAGE 27. ConstructorDeclaration : RemoveSwitch 28 mutation → NO_COVERAGE 28. ConstructorDeclaration : RemoveSwitch 29 mutation → NO_COVERAGE 29. ConstructorDeclaration : RemoveSwitch 3 mutation → NO_COVERAGE 30. ConstructorDeclaration : RemoveSwitch 30 mutation → NO_COVERAGE 31. ConstructorDeclaration : RemoveSwitch 31 mutation → NO_COVERAGE 32. ConstructorDeclaration : RemoveSwitch 32 mutation → NO_COVERAGE 33. ConstructorDeclaration : RemoveSwitch 33 mutation → NO_COVERAGE 34. ConstructorDeclaration : RemoveSwitch 34 mutation → NO_COVERAGE 35. ConstructorDeclaration : RemoveSwitch 35 mutation → NO_COVERAGE 36. ConstructorDeclaration : RemoveSwitch 36 mutation → NO_COVERAGE 37. ConstructorDeclaration : RemoveSwitch 37 mutation → NO_COVERAGE 38. ConstructorDeclaration : RemoveSwitch 38 mutation → NO_COVERAGE 39. ConstructorDeclaration : RemoveSwitch 39 mutation → NO_COVERAGE 40. ConstructorDeclaration : RemoveSwitch 4 mutation → NO_COVERAGE 41. ConstructorDeclaration : RemoveSwitch 40 mutation → NO_COVERAGE 42. ConstructorDeclaration : RemoveSwitch 41 mutation → NO_COVERAGE 43. ConstructorDeclaration : RemoveSwitch 42 mutation → NO_COVERAGE 44. ConstructorDeclaration : RemoveSwitch 43 mutation → NO_COVERAGE 45. ConstructorDeclaration : RemoveSwitch 44 mutation → NO_COVERAGE 46. ConstructorDeclaration : RemoveSwitch 45 mutation → NO_COVERAGE 47. ConstructorDeclaration : RemoveSwitch 46 mutation → NO_COVERAGE 48. ConstructorDeclaration : RemoveSwitch 47 mutation → NO_COVERAGE 49. ConstructorDeclaration : RemoveSwitch 48 mutation → NO_COVERAGE 50. ConstructorDeclaration : RemoveSwitch 49 mutation → NO_COVERAGE 51. ConstructorDeclaration : RemoveSwitch 5 mutation → NO_COVERAGE 52. ConstructorDeclaration : RemoveSwitch 50 mutation → NO_COVERAGE 53. ConstructorDeclaration : RemoveSwitch 51 mutation → NO_COVERAGE 54. ConstructorDeclaration : RemoveSwitch 52 mutation → NO_COVERAGE 55. ConstructorDeclaration : RemoveSwitch 53 mutation → NO_COVERAGE 56. ConstructorDeclaration : RemoveSwitch 54 mutation → NO_COVERAGE 57. ConstructorDeclaration : RemoveSwitch 55 mutation → NO_COVERAGE 58. ConstructorDeclaration : RemoveSwitch 56 mutation → NO_COVERAGE 59. ConstructorDeclaration : RemoveSwitch 57 mutation → NO_COVERAGE 60. ConstructorDeclaration : RemoveSwitch 58 mutation → NO_COVERAGE 61. ConstructorDeclaration : RemoveSwitch 59 mutation → NO_COVERAGE 62. ConstructorDeclaration : RemoveSwitch 6 mutation → NO_COVERAGE 63. ConstructorDeclaration : RemoveSwitch 60 mutation → NO_COVERAGE 64. ConstructorDeclaration : RemoveSwitch 61 mutation → NO_COVERAGE 65. ConstructorDeclaration : RemoveSwitch 62 mutation → NO_COVERAGE 66. ConstructorDeclaration : RemoveSwitch 63 mutation → NO_COVERAGE 67. ConstructorDeclaration : RemoveSwitch 64 mutation → NO_COVERAGE 68. ConstructorDeclaration : RemoveSwitch 65 mutation → NO_COVERAGE 69. ConstructorDeclaration : RemoveSwitch 66 mutation → NO_COVERAGE 70. ConstructorDeclaration : RemoveSwitch 67 mutation → NO_COVERAGE 71. ConstructorDeclaration : RemoveSwitch 68 mutation → NO_COVERAGE 72. ConstructorDeclaration : RemoveSwitch 69 mutation → NO_COVERAGE 73. ConstructorDeclaration : RemoveSwitch 7 mutation → NO_COVERAGE 74. ConstructorDeclaration : RemoveSwitch 70 mutation → NO_COVERAGE 75. ConstructorDeclaration : RemoveSwitch 71 mutation → NO_COVERAGE 76. ConstructorDeclaration : RemoveSwitch 72 mutation → NO_COVERAGE 77. ConstructorDeclaration : RemoveSwitch 73 mutation → NO_COVERAGE 78. ConstructorDeclaration : RemoveSwitch 74 mutation → NO_COVERAGE 79. ConstructorDeclaration : RemoveSwitch 75 mutation → NO_COVERAGE 80. ConstructorDeclaration : RemoveSwitch 76 mutation → NO_COVERAGE 81. ConstructorDeclaration : RemoveSwitch 77 mutation → NO_COVERAGE 82. ConstructorDeclaration : RemoveSwitch 78 mutation → NO_COVERAGE 83. ConstructorDeclaration : RemoveSwitch 79 mutation → NO_COVERAGE 84. ConstructorDeclaration : RemoveSwitch 8 mutation → NO_COVERAGE 85. ConstructorDeclaration : RemoveSwitch 80 mutation → NO_COVERAGE 86. ConstructorDeclaration : RemoveSwitch 81 mutation → NO_COVERAGE 87. ConstructorDeclaration : RemoveSwitch 82 mutation → NO_COVERAGE 88. ConstructorDeclaration : RemoveSwitch 83 mutation → NO_COVERAGE 89. ConstructorDeclaration : RemoveSwitch 84 mutation → NO_COVERAGE 90. ConstructorDeclaration : RemoveSwitch 85 mutation → NO_COVERAGE 91. ConstructorDeclaration : RemoveSwitch 86 mutation → NO_COVERAGE 92. ConstructorDeclaration : RemoveSwitch 9 mutation → NO_COVERAGE 93. ConstructorDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1864 | case ASSERT: | |
| 1865 | case BOOLEAN: | |
| 1866 | case BREAK: | |
| 1867 | case BYTE: | |
| 1868 | case CHAR: | |
| 1869 | case CLASS: | |
| 1870 | case CONTINUE: | |
| 1871 | case DO: | |
| 1872 | case DOUBLE: | |
| 1873 | case FALSE: | |
| 1874 | case FINAL: | |
| 1875 | case FLOAT: | |
| 1876 | case FOR: | |
| 1877 | case IF: | |
| 1878 | case INT: | |
| 1879 | case INTERFACE: | |
| 1880 | case LONG: | |
| 1881 | case NEW: | |
| 1882 | case NULL: | |
| 1883 | case RETURN: | |
| 1884 | case SHORT: | |
| 1885 | case SUPER: | |
| 1886 | case SWITCH: | |
| 1887 | case SYNCHRONIZED: | |
| 1888 | case THIS: | |
| 1889 | case THROW: | |
| 1890 | case TRUE: | |
| 1891 | case TRY: | |
| 1892 | case VOID: | |
| 1893 | case WHILE: | |
| 1894 | case INTEGER_LITERAL: | |
| 1895 | case FLOATING_POINT_LITERAL: | |
| 1896 | case CHARACTER_LITERAL: | |
| 1897 | case STRING_LITERAL: | |
| 1898 | case IDENTIFIER: | |
| 1899 | case LPAREN: | |
| 1900 | case LBRACE: | |
| 1901 | case SEMICOLON: | |
| 1902 | case INCR: | |
| 1903 | case DECR: | |
| 1904 | ; | |
| 1905 | break; | |
| 1906 | default: | |
| 1907 | break label_16; | |
| 1908 | } | |
| 1909 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::BlockStatement → NO_COVERAGE |
BlockStatement(); |
| 1910 | } | |
| 1911 |
2
1. ConstructorDeclaration : Substituted 80 with 81 → NO_COVERAGE 2. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 1912 | } catch (Throwable jjte000) { | |
| 1913 |
3
1. ConstructorDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. ConstructorDeclaration : negated conditional → KILLED 3. ConstructorDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1914 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1915 |
1
1. ConstructorDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1916 | } else { | |
| 1917 |
1
1. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 1918 | } | |
| 1919 |
3
1. ConstructorDeclaration : negated conditional → SURVIVED 2. ConstructorDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. ConstructorDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 1920 | { | |
| 1921 | if (true) { | |
| 1922 | throw (RuntimeException) jjte000; | |
| 1923 | } | |
| 1924 | } | |
| 1925 | } | |
| 1926 |
3
1. ConstructorDeclaration : negated conditional → SURVIVED 2. ConstructorDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. ConstructorDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 1927 | { | |
| 1928 | if (true) { | |
| 1929 | throw (ParseException) jjte000; | |
| 1930 | } | |
| 1931 | } | |
| 1932 | } | |
| 1933 | { | |
| 1934 | if (true) { | |
| 1935 | throw (Error) jjte000; | |
| 1936 | } | |
| 1937 | } | |
| 1938 | } finally { | |
| 1939 |
6
1. ConstructorDeclaration : negated conditional → SURVIVED 2. ConstructorDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. ConstructorDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. ConstructorDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. ConstructorDeclaration : negated conditional → KILLED 6. ConstructorDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 1940 |
4
1. ConstructorDeclaration : Substituted 1 with 0 → SURVIVED 2. ConstructorDeclaration : Substituted 1 with 0 → SURVIVED 3. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ConstructorDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 1941 | } | |
| 1942 | } | |
| 1943 | } | |
| 1944 | ||
| 1945 | final public void ExplicitConstructorInvocation() throws ParseException { | |
| 1946 | /*@bgen(jjtree) ExplicitConstructorInvocation */ | |
| 1947 |
2
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ExplicitConstructorInvocation : Substituted 26 with 27 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, |
| 1948 | JJTEXPLICITCONSTRUCTORINVOCATION); | |
| 1949 |
1
1. ExplicitConstructorInvocation : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 1950 |
1
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 1951 | try { | |
| 1952 |
5
1. ExplicitConstructorInvocation : Substituted 2147483647 with -2147483648 → SURVIVED 2. ExplicitConstructorInvocation : negated conditional → SURVIVED 3. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_8 → SURVIVED 4. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → SURVIVED 5. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_8(2147483647)) { |
| 1953 |
2
1. ExplicitConstructorInvocation : Substituted 57 with 58 → NO_COVERAGE 2. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(THIS); |
| 1954 |
1
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Arguments → NO_COVERAGE |
Arguments(); |
| 1955 |
2
1. ExplicitConstructorInvocation : Substituted 83 with 84 → NO_COVERAGE 2. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 1956 | } else { | |
| 1957 |
69
1. ExplicitConstructorInvocation : Substituted -1 with 0 → SURVIVED 2. ExplicitConstructorInvocation : negated conditional → SURVIVED 3. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → SURVIVED 5. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → SURVIVED 6. ExplicitConstructorInvocation : RemoveSwitch 0 mutation → SURVIVED 7. ExplicitConstructorInvocation : RemoveSwitch 1 mutation → SURVIVED 8. ExplicitConstructorInvocation : RemoveSwitch 10 mutation → SURVIVED 9. ExplicitConstructorInvocation : RemoveSwitch 11 mutation → SURVIVED 10. ExplicitConstructorInvocation : RemoveSwitch 12 mutation → SURVIVED 11. ExplicitConstructorInvocation : RemoveSwitch 13 mutation → SURVIVED 12. ExplicitConstructorInvocation : RemoveSwitch 14 mutation → SURVIVED 13. ExplicitConstructorInvocation : RemoveSwitch 15 mutation → SURVIVED 14. ExplicitConstructorInvocation : RemoveSwitch 16 mutation → SURVIVED 15. ExplicitConstructorInvocation : RemoveSwitch 17 mutation → SURVIVED 16. ExplicitConstructorInvocation : RemoveSwitch 18 mutation → SURVIVED 17. ExplicitConstructorInvocation : RemoveSwitch 19 mutation → SURVIVED 18. ExplicitConstructorInvocation : RemoveSwitch 2 mutation → SURVIVED 19. ExplicitConstructorInvocation : RemoveSwitch 20 mutation → SURVIVED 20. ExplicitConstructorInvocation : RemoveSwitch 21 mutation → SURVIVED 21. ExplicitConstructorInvocation : RemoveSwitch 22 mutation → SURVIVED 22. ExplicitConstructorInvocation : RemoveSwitch 23 mutation → SURVIVED 23. ExplicitConstructorInvocation : RemoveSwitch 24 mutation → SURVIVED 24. ExplicitConstructorInvocation : RemoveSwitch 25 mutation → SURVIVED 25. ExplicitConstructorInvocation : RemoveSwitch 26 mutation → SURVIVED 26. ExplicitConstructorInvocation : RemoveSwitch 27 mutation → SURVIVED 27. ExplicitConstructorInvocation : RemoveSwitch 28 mutation → SURVIVED 28. ExplicitConstructorInvocation : RemoveSwitch 29 mutation → SURVIVED 29. ExplicitConstructorInvocation : RemoveSwitch 3 mutation → SURVIVED 30. ExplicitConstructorInvocation : RemoveSwitch 30 mutation → SURVIVED 31. ExplicitConstructorInvocation : RemoveSwitch 31 mutation → SURVIVED 32. ExplicitConstructorInvocation : RemoveSwitch 32 mutation → SURVIVED 33. ExplicitConstructorInvocation : RemoveSwitch 33 mutation → SURVIVED 34. ExplicitConstructorInvocation : RemoveSwitch 34 mutation → SURVIVED 35. ExplicitConstructorInvocation : RemoveSwitch 35 mutation → SURVIVED 36. ExplicitConstructorInvocation : RemoveSwitch 36 mutation → SURVIVED 37. ExplicitConstructorInvocation : RemoveSwitch 37 mutation → SURVIVED 38. ExplicitConstructorInvocation : RemoveSwitch 38 mutation → SURVIVED 39. ExplicitConstructorInvocation : RemoveSwitch 39 mutation → SURVIVED 40. ExplicitConstructorInvocation : RemoveSwitch 4 mutation → SURVIVED 41. ExplicitConstructorInvocation : RemoveSwitch 40 mutation → SURVIVED 42. ExplicitConstructorInvocation : RemoveSwitch 41 mutation → SURVIVED 43. ExplicitConstructorInvocation : RemoveSwitch 42 mutation → SURVIVED 44. ExplicitConstructorInvocation : RemoveSwitch 43 mutation → SURVIVED 45. ExplicitConstructorInvocation : RemoveSwitch 44 mutation → SURVIVED 46. ExplicitConstructorInvocation : RemoveSwitch 45 mutation → SURVIVED 47. ExplicitConstructorInvocation : RemoveSwitch 46 mutation → SURVIVED 48. ExplicitConstructorInvocation : RemoveSwitch 47 mutation → SURVIVED 49. ExplicitConstructorInvocation : RemoveSwitch 48 mutation → SURVIVED 50. ExplicitConstructorInvocation : RemoveSwitch 49 mutation → SURVIVED 51. ExplicitConstructorInvocation : RemoveSwitch 5 mutation → SURVIVED 52. ExplicitConstructorInvocation : RemoveSwitch 50 mutation → SURVIVED 53. ExplicitConstructorInvocation : RemoveSwitch 51 mutation → SURVIVED 54. ExplicitConstructorInvocation : RemoveSwitch 52 mutation → SURVIVED 55. ExplicitConstructorInvocation : RemoveSwitch 53 mutation → SURVIVED 56. ExplicitConstructorInvocation : RemoveSwitch 54 mutation → SURVIVED 57. ExplicitConstructorInvocation : RemoveSwitch 55 mutation → SURVIVED 58. ExplicitConstructorInvocation : RemoveSwitch 56 mutation → SURVIVED 59. ExplicitConstructorInvocation : RemoveSwitch 57 mutation → SURVIVED 60. ExplicitConstructorInvocation : RemoveSwitch 58 mutation → SURVIVED 61. ExplicitConstructorInvocation : RemoveSwitch 59 mutation → SURVIVED 62. ExplicitConstructorInvocation : RemoveSwitch 6 mutation → SURVIVED 63. ExplicitConstructorInvocation : RemoveSwitch 60 mutation → SURVIVED 64. ExplicitConstructorInvocation : RemoveSwitch 61 mutation → SURVIVED 65. ExplicitConstructorInvocation : RemoveSwitch 62 mutation → SURVIVED 66. ExplicitConstructorInvocation : RemoveSwitch 7 mutation → SURVIVED 67. ExplicitConstructorInvocation : RemoveSwitch 8 mutation → SURVIVED 68. ExplicitConstructorInvocation : RemoveSwitch 9 mutation → SURVIVED 69. ExplicitConstructorInvocation : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 1958 | case BOOLEAN: | |
| 1959 | case BYTE: | |
| 1960 | case CHAR: | |
| 1961 | case DOUBLE: | |
| 1962 | case FALSE: | |
| 1963 | case FLOAT: | |
| 1964 | case INT: | |
| 1965 | case LONG: | |
| 1966 | case NEW: | |
| 1967 | case NULL: | |
| 1968 | case SHORT: | |
| 1969 | case SUPER: | |
| 1970 | case THIS: | |
| 1971 | case TRUE: | |
| 1972 | case VOID: | |
| 1973 | case INTEGER_LITERAL: | |
| 1974 | case FLOATING_POINT_LITERAL: | |
| 1975 | case CHARACTER_LITERAL: | |
| 1976 | case STRING_LITERAL: | |
| 1977 | case IDENTIFIER: | |
| 1978 | case LPAREN: | |
| 1979 |
5
1. ExplicitConstructorInvocation : Substituted 2 with 3 → NO_COVERAGE 2. ExplicitConstructorInvocation : negated conditional → NO_COVERAGE 3. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_7 → NO_COVERAGE 4. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → NO_COVERAGE 5. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_7(2)) { |
| 1980 |
1
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimaryExpression → NO_COVERAGE |
PrimaryExpression(); |
| 1981 |
2
1. ExplicitConstructorInvocation : Substituted 85 with 86 → NO_COVERAGE 2. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 1982 | } else { | |
| 1983 | ; | |
| 1984 | } | |
| 1985 |
2
1. ExplicitConstructorInvocation : Substituted 54 with 55 → NO_COVERAGE 2. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SUPER); |
| 1986 |
1
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Arguments → NO_COVERAGE |
Arguments(); |
| 1987 |
2
1. ExplicitConstructorInvocation : Substituted 83 with 84 → NO_COVERAGE 2. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 1988 | break; | |
| 1989 | default: | |
| 1990 |
2
1. ExplicitConstructorInvocation : Substituted -1 with 0 → SURVIVED 2. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 1991 |
1
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 1992 | } | |
| 1993 | } | |
| 1994 | } catch (Throwable jjte000) { | |
| 1995 |
3
1. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → SURVIVED 2. ExplicitConstructorInvocation : negated conditional → KILLED 3. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 1996 |
1
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 1997 |
1
1. ExplicitConstructorInvocation : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 1998 | } else { | |
| 1999 |
1
1. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2000 | } | |
| 2001 |
3
1. ExplicitConstructorInvocation : negated conditional → SURVIVED 2. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → SURVIVED 3. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 2002 | { | |
| 2003 | if (true) { | |
| 2004 | throw (RuntimeException) jjte000; | |
| 2005 | } | |
| 2006 | } | |
| 2007 | } | |
| 2008 |
3
1. ExplicitConstructorInvocation : negated conditional → SURVIVED 2. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → SURVIVED 3. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2009 | { | |
| 2010 | if (true) { | |
| 2011 | throw (ParseException) jjte000; | |
| 2012 | } | |
| 2013 | } | |
| 2014 | } | |
| 2015 | { | |
| 2016 | if (true) { | |
| 2017 | throw (Error) jjte000; | |
| 2018 | } | |
| 2019 | } | |
| 2020 | } finally { | |
| 2021 |
6
1. ExplicitConstructorInvocation : negated conditional → SURVIVED 2. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → SURVIVED 3. ExplicitConstructorInvocation : removed conditional - replaced equality check with false → SURVIVED 4. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → SURVIVED 5. ExplicitConstructorInvocation : negated conditional → KILLED 6. ExplicitConstructorInvocation : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2022 |
4
1. ExplicitConstructorInvocation : Substituted 1 with 0 → SURVIVED 2. ExplicitConstructorInvocation : Substituted 1 with 0 → SURVIVED 3. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ExplicitConstructorInvocation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2023 | } | |
| 2024 | } | |
| 2025 | } | |
| 2026 | ||
| 2027 | final public void Initializer() throws ParseException { | |
| 2028 | /*@bgen(jjtree) Initializer */ | |
| 2029 |
2
1. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. Initializer : Substituted 27 with 28 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTINITIALIZER); |
| 2030 |
1
1. Initializer : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2031 |
1
1. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2032 | try { | |
| 2033 |
7
1. Initializer : Substituted -1 with 0 → SURVIVED 2. Initializer : negated conditional → SURVIVED 3. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. Initializer : removed conditional - replaced equality check with false → SURVIVED 5. Initializer : removed conditional - replaced equality check with true → SURVIVED 6. Initializer : RemoveSwitch 0 mutation → SURVIVED 7. Initializer : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2034 | case STATIC: | |
| 2035 |
2
1. Initializer : Substituted 52 with 53 → NO_COVERAGE 2. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(STATIC); |
| 2036 | break; | |
| 2037 | default: | |
| 2038 | ; | |
| 2039 | } | |
| 2040 |
1
1. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Block → KILLED |
Block(); |
| 2041 | } catch (Throwable jjte000) { | |
| 2042 |
3
1. Initializer : removed conditional - replaced equality check with true → SURVIVED 2. Initializer : negated conditional → KILLED 3. Initializer : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2043 |
1
1. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2044 |
1
1. Initializer : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2045 | } else { | |
| 2046 |
1
1. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2047 | } | |
| 2048 |
3
1. Initializer : negated conditional → SURVIVED 2. Initializer : removed conditional - replaced equality check with false → SURVIVED 3. Initializer : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 2049 | { | |
| 2050 | if (true) { | |
| 2051 | throw (RuntimeException) jjte000; | |
| 2052 | } | |
| 2053 | } | |
| 2054 | } | |
| 2055 |
3
1. Initializer : negated conditional → SURVIVED 2. Initializer : removed conditional - replaced equality check with false → SURVIVED 3. Initializer : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2056 | { | |
| 2057 | if (true) { | |
| 2058 | throw (ParseException) jjte000; | |
| 2059 | } | |
| 2060 | } | |
| 2061 | } | |
| 2062 | { | |
| 2063 | if (true) { | |
| 2064 | throw (Error) jjte000; | |
| 2065 | } | |
| 2066 | } | |
| 2067 | } finally { | |
| 2068 |
6
1. Initializer : negated conditional → SURVIVED 2. Initializer : removed conditional - replaced equality check with false → SURVIVED 3. Initializer : removed conditional - replaced equality check with false → SURVIVED 4. Initializer : removed conditional - replaced equality check with true → SURVIVED 5. Initializer : negated conditional → KILLED 6. Initializer : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2069 |
4
1. Initializer : Substituted 1 with 0 → SURVIVED 2. Initializer : Substituted 1 with 0 → SURVIVED 3. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Initializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2070 | } | |
| 2071 | } | |
| 2072 | } | |
| 2073 | ||
| 2074 | /* | |
| 2075 | * Type, name and expression syntax follows. | |
| 2076 | */ | |
| 2077 | final public void Type() throws ParseException { | |
| 2078 | /*@bgen(jjtree) Type */ | |
| 2079 |
2
1. Type : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. Type : Substituted 28 with 29 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTYPE); |
| 2080 |
1
1. Type : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2081 |
1
1. Type : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2082 | try { | |
| 2083 |
5
1. Type : Substituted 2 with 3 → SURVIVED 2. Type : negated conditional → SURVIVED 3. Type : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_9 → SURVIVED 4. Type : removed conditional - replaced equality check with false → SURVIVED 5. Type : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_9(2)) { |
| 2084 |
1
1. Type : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ReferenceType → SURVIVED |
ReferenceType(); |
| 2085 | } else { | |
| 2086 |
14
1. Type : Substituted -1 with 0 → SURVIVED 2. Type : negated conditional → SURVIVED 3. Type : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. Type : removed conditional - replaced equality check with false → SURVIVED 5. Type : removed conditional - replaced equality check with true → SURVIVED 6. Type : RemoveSwitch 0 mutation → SURVIVED 7. Type : RemoveSwitch 1 mutation → SURVIVED 8. Type : RemoveSwitch 2 mutation → SURVIVED 9. Type : RemoveSwitch 3 mutation → SURVIVED 10. Type : RemoveSwitch 4 mutation → SURVIVED 11. Type : RemoveSwitch 5 mutation → SURVIVED 12. Type : RemoveSwitch 6 mutation → SURVIVED 13. Type : RemoveSwitch 7 mutation → SURVIVED 14. Type : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2087 | case BOOLEAN: | |
| 2088 | case BYTE: | |
| 2089 | case CHAR: | |
| 2090 | case DOUBLE: | |
| 2091 | case FLOAT: | |
| 2092 | case INT: | |
| 2093 | case LONG: | |
| 2094 | case SHORT: | |
| 2095 |
1
1. Type : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimitiveType → NO_COVERAGE |
PrimitiveType(); |
| 2096 | break; | |
| 2097 | default: | |
| 2098 |
2
1. Type : Substituted -1 with 0 → SURVIVED 2. Type : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 2099 |
1
1. Type : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 2100 | } | |
| 2101 | } | |
| 2102 | } catch (Throwable jjte000) { | |
| 2103 |
3
1. Type : removed conditional - replaced equality check with true → SURVIVED 2. Type : negated conditional → KILLED 3. Type : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2104 |
1
1. Type : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2105 |
1
1. Type : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2106 | } else { | |
| 2107 |
1
1. Type : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2108 | } | |
| 2109 |
3
1. Type : negated conditional → SURVIVED 2. Type : removed conditional - replaced equality check with false → SURVIVED 3. Type : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 2110 | { | |
| 2111 | if (true) { | |
| 2112 | throw (RuntimeException) jjte000; | |
| 2113 | } | |
| 2114 | } | |
| 2115 | } | |
| 2116 |
3
1. Type : negated conditional → SURVIVED 2. Type : removed conditional - replaced equality check with false → SURVIVED 3. Type : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2117 | { | |
| 2118 | if (true) { | |
| 2119 | throw (ParseException) jjte000; | |
| 2120 | } | |
| 2121 | } | |
| 2122 | } | |
| 2123 | { | |
| 2124 | if (true) { | |
| 2125 | throw (Error) jjte000; | |
| 2126 | } | |
| 2127 | } | |
| 2128 | } finally { | |
| 2129 |
6
1. Type : negated conditional → SURVIVED 2. Type : removed conditional - replaced equality check with false → SURVIVED 3. Type : removed conditional - replaced equality check with false → SURVIVED 4. Type : removed conditional - replaced equality check with true → SURVIVED 5. Type : negated conditional → KILLED 6. Type : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2130 |
4
1. Type : Substituted 1 with 0 → SURVIVED 2. Type : Substituted 1 with 0 → SURVIVED 3. Type : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Type : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2131 | } | |
| 2132 | } | |
| 2133 | } | |
| 2134 | ||
| 2135 | final public void ReferenceType() throws ParseException { | |
| 2136 | /*@bgen(jjtree) ReferenceType */ | |
| 2137 |
2
1. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ReferenceType : Substituted 29 with 30 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTREFERENCETYPE); |
| 2138 |
1
1. ReferenceType : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2139 |
1
1. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2140 | try { | |
| 2141 |
15
1. ReferenceType : Substituted -1 with 0 → SURVIVED 2. ReferenceType : negated conditional → SURVIVED 3. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ReferenceType : removed conditional - replaced equality check with false → SURVIVED 5. ReferenceType : removed conditional - replaced equality check with true → SURVIVED 6. ReferenceType : RemoveSwitch 0 mutation → SURVIVED 7. ReferenceType : RemoveSwitch 1 mutation → SURVIVED 8. ReferenceType : RemoveSwitch 2 mutation → SURVIVED 9. ReferenceType : RemoveSwitch 3 mutation → SURVIVED 10. ReferenceType : RemoveSwitch 4 mutation → SURVIVED 11. ReferenceType : RemoveSwitch 5 mutation → SURVIVED 12. ReferenceType : RemoveSwitch 6 mutation → SURVIVED 13. ReferenceType : RemoveSwitch 7 mutation → SURVIVED 14. ReferenceType : RemoveSwitch 8 mutation → SURVIVED 15. ReferenceType : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2142 | case BOOLEAN: | |
| 2143 | case BYTE: | |
| 2144 | case CHAR: | |
| 2145 | case DOUBLE: | |
| 2146 | case FLOAT: | |
| 2147 | case INT: | |
| 2148 | case LONG: | |
| 2149 | case SHORT: | |
| 2150 |
1
1. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimitiveType → NO_COVERAGE |
PrimitiveType(); |
| 2151 | label_17: | |
| 2152 | while (true) { | |
| 2153 |
2
1. ReferenceType : Substituted 81 with 82 → NO_COVERAGE 2. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 2154 |
2
1. ReferenceType : Substituted 82 with 83 → NO_COVERAGE 2. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 2155 |
5
1. ReferenceType : Substituted 2 with 3 → NO_COVERAGE 2. ReferenceType : negated conditional → NO_COVERAGE 3. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_10 → NO_COVERAGE 4. ReferenceType : removed conditional - replaced equality check with false → NO_COVERAGE 5. ReferenceType : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_10(2)) { |
| 2156 | ; | |
| 2157 | } else { | |
| 2158 | break label_17; | |
| 2159 | } | |
| 2160 | } | |
| 2161 | break; | |
| 2162 | case IDENTIFIER: | |
| 2163 |
1
1. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → SURVIVED |
ClassOrInterfaceType(); |
| 2164 | label_18: | |
| 2165 | while (true) { | |
| 2166 |
5
1. ReferenceType : Substituted 2 with 3 → SURVIVED 2. ReferenceType : negated conditional → SURVIVED 3. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_11 → SURVIVED 4. ReferenceType : removed conditional - replaced equality check with false → SURVIVED 5. ReferenceType : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_11(2)) { |
| 2167 | ; | |
| 2168 | } else { | |
| 2169 | break label_18; | |
| 2170 | } | |
| 2171 |
2
1. ReferenceType : Substituted 81 with 82 → NO_COVERAGE 2. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 2172 |
2
1. ReferenceType : Substituted 82 with 83 → NO_COVERAGE 2. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 2173 | } | |
| 2174 | break; | |
| 2175 | default: | |
| 2176 |
2
1. ReferenceType : Substituted -1 with 0 → SURVIVED 2. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 2177 |
1
1. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 2178 | } | |
| 2179 | } catch (Throwable jjte000) { | |
| 2180 |
3
1. ReferenceType : removed conditional - replaced equality check with true → SURVIVED 2. ReferenceType : negated conditional → KILLED 3. ReferenceType : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2181 |
1
1. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2182 |
1
1. ReferenceType : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2183 | } else { | |
| 2184 |
1
1. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2185 | } | |
| 2186 |
3
1. ReferenceType : negated conditional → SURVIVED 2. ReferenceType : removed conditional - replaced equality check with false → SURVIVED 3. ReferenceType : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 2187 | { | |
| 2188 | if (true) { | |
| 2189 | throw (RuntimeException) jjte000; | |
| 2190 | } | |
| 2191 | } | |
| 2192 | } | |
| 2193 |
3
1. ReferenceType : negated conditional → SURVIVED 2. ReferenceType : removed conditional - replaced equality check with false → SURVIVED 3. ReferenceType : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2194 | { | |
| 2195 | if (true) { | |
| 2196 | throw (ParseException) jjte000; | |
| 2197 | } | |
| 2198 | } | |
| 2199 | } | |
| 2200 | { | |
| 2201 | if (true) { | |
| 2202 | throw (Error) jjte000; | |
| 2203 | } | |
| 2204 | } | |
| 2205 | } finally { | |
| 2206 |
6
1. ReferenceType : negated conditional → SURVIVED 2. ReferenceType : removed conditional - replaced equality check with false → SURVIVED 3. ReferenceType : removed conditional - replaced equality check with false → SURVIVED 4. ReferenceType : removed conditional - replaced equality check with true → SURVIVED 5. ReferenceType : negated conditional → KILLED 6. ReferenceType : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2207 |
4
1. ReferenceType : Substituted 1 with 0 → SURVIVED 2. ReferenceType : Substituted 1 with 0 → SURVIVED 3. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ReferenceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2208 | } | |
| 2209 | } | |
| 2210 | } | |
| 2211 | ||
| 2212 | final public void ClassOrInterfaceType() throws ParseException { | |
| 2213 | /*@bgen(jjtree) ClassOrInterfaceType */ | |
| 2214 |
2
1. ClassOrInterfaceType : Substituted 30 with 31 → SURVIVED 2. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCLASSORINTERFACETYPE); |
| 2215 |
1
1. ClassOrInterfaceType : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2216 |
1
1. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2217 | try { | |
| 2218 |
2
1. ClassOrInterfaceType : Substituted 74 with 75 → SURVIVED 2. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(IDENTIFIER); |
| 2219 |
5
1. ClassOrInterfaceType : Substituted 2 with 3 → SURVIVED 2. ClassOrInterfaceType : negated conditional → SURVIVED 3. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_12 → SURVIVED 4. ClassOrInterfaceType : removed conditional - replaced equality check with false → SURVIVED 5. ClassOrInterfaceType : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_12(2)) { |
| 2220 |
1
1. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeArguments → NO_COVERAGE |
TypeArguments(); |
| 2221 | } else { | |
| 2222 | ; | |
| 2223 | } | |
| 2224 | label_19:while (true) { | |
| 2225 |
5
1. ClassOrInterfaceType : Substituted 2 with 3 → SURVIVED 2. ClassOrInterfaceType : negated conditional → SURVIVED 3. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_13 → SURVIVED 4. ClassOrInterfaceType : removed conditional - replaced equality check with false → SURVIVED 5. ClassOrInterfaceType : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_13(2)) { |
| 2226 | ; | |
| 2227 | } else { | |
| 2228 | break label_19; | |
| 2229 | } | |
| 2230 |
2
1. ClassOrInterfaceType : Substituted 85 with 86 → NO_COVERAGE 2. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 2231 |
2
1. ClassOrInterfaceType : Substituted 74 with 75 → NO_COVERAGE 2. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 2232 |
5
1. ClassOrInterfaceType : Substituted 2 with 3 → NO_COVERAGE 2. ClassOrInterfaceType : negated conditional → NO_COVERAGE 3. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_14 → NO_COVERAGE 4. ClassOrInterfaceType : removed conditional - replaced equality check with false → NO_COVERAGE 5. ClassOrInterfaceType : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_14(2)) { |
| 2233 |
1
1. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeArguments → NO_COVERAGE |
TypeArguments(); |
| 2234 | } else { | |
| 2235 | ; | |
| 2236 | } | |
| 2237 | } | |
| 2238 | } catch (Throwable jjte000) { | |
| 2239 |
3
1. ClassOrInterfaceType : removed conditional - replaced equality check with true → SURVIVED 2. ClassOrInterfaceType : negated conditional → KILLED 3. ClassOrInterfaceType : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2240 |
1
1. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2241 |
1
1. ClassOrInterfaceType : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2242 | } else { | |
| 2243 |
1
1. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2244 | } | |
| 2245 |
3
1. ClassOrInterfaceType : removed conditional - replaced equality check with false → SURVIVED 2. ClassOrInterfaceType : negated conditional → KILLED 3. ClassOrInterfaceType : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2246 | { | |
| 2247 | if (true) { | |
| 2248 | throw (RuntimeException) jjte000; | |
| 2249 | } | |
| 2250 | } | |
| 2251 | } | |
| 2252 |
3
1. ClassOrInterfaceType : removed conditional - replaced equality check with false → SURVIVED 2. ClassOrInterfaceType : negated conditional → KILLED 3. ClassOrInterfaceType : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 2253 | { | |
| 2254 | if (true) { | |
| 2255 | throw (ParseException) jjte000; | |
| 2256 | } | |
| 2257 | } | |
| 2258 | } | |
| 2259 | { | |
| 2260 | if (true) { | |
| 2261 | throw (Error) jjte000; | |
| 2262 | } | |
| 2263 | } | |
| 2264 | } finally { | |
| 2265 |
6
1. ClassOrInterfaceType : negated conditional → SURVIVED 2. ClassOrInterfaceType : removed conditional - replaced equality check with false → SURVIVED 3. ClassOrInterfaceType : removed conditional - replaced equality check with false → SURVIVED 4. ClassOrInterfaceType : removed conditional - replaced equality check with true → SURVIVED 5. ClassOrInterfaceType : negated conditional → KILLED 6. ClassOrInterfaceType : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2266 |
4
1. ClassOrInterfaceType : Substituted 1 with 0 → SURVIVED 2. ClassOrInterfaceType : Substituted 1 with 0 → SURVIVED 3. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ClassOrInterfaceType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2267 | } | |
| 2268 | } | |
| 2269 | } | |
| 2270 | ||
| 2271 | final public void TypeArguments() throws ParseException { | |
| 2272 | /*@bgen(jjtree) TypeArguments */ | |
| 2273 |
2
1. TypeArguments : Substituted 31 with 32 → SURVIVED 2. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTYPEARGUMENTS); |
| 2274 |
1
1. TypeArguments : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2275 |
1
1. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2276 | try { | |
| 2277 |
2
1. TypeArguments : Substituted 88 with 89 → SURVIVED 2. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LT); |
| 2278 |
1
1. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeArgument → SURVIVED |
TypeArgument(); |
| 2279 | label_20:while (true) { | |
| 2280 |
7
1. TypeArguments : Substituted -1 with 0 → NO_COVERAGE 2. TypeArguments : negated conditional → NO_COVERAGE 3. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. TypeArguments : removed conditional - replaced equality check with false → NO_COVERAGE 5. TypeArguments : removed conditional - replaced equality check with true → NO_COVERAGE 6. TypeArguments : RemoveSwitch 0 mutation → NO_COVERAGE 7. TypeArguments : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2281 | case COMMA: | |
| 2282 | ; | |
| 2283 | break; | |
| 2284 | default: | |
| 2285 | break label_20; | |
| 2286 | } | |
| 2287 |
2
1. TypeArguments : Substituted 84 with 85 → NO_COVERAGE 2. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 2288 |
1
1. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeArgument → NO_COVERAGE |
TypeArgument(); |
| 2289 | } | |
| 2290 |
2
1. TypeArguments : Substituted 124 with 125 → NO_COVERAGE 2. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 2291 | } catch (Throwable jjte000) { | |
| 2292 |
3
1. TypeArguments : removed conditional - replaced equality check with true → SURVIVED 2. TypeArguments : negated conditional → KILLED 3. TypeArguments : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2293 |
1
1. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2294 |
1
1. TypeArguments : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2295 | } else { | |
| 2296 |
1
1. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2297 | } | |
| 2298 |
3
1. TypeArguments : removed conditional - replaced equality check with true → SURVIVED 2. TypeArguments : negated conditional → KILLED 3. TypeArguments : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2299 | { | |
| 2300 | if (true) { | |
| 2301 | throw (RuntimeException) jjte000; | |
| 2302 | } | |
| 2303 | } | |
| 2304 | } | |
| 2305 |
3
1. TypeArguments : negated conditional → SURVIVED 2. TypeArguments : removed conditional - replaced equality check with false → SURVIVED 3. TypeArguments : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2306 | { | |
| 2307 | if (true) { | |
| 2308 | throw (ParseException) jjte000; | |
| 2309 | } | |
| 2310 | } | |
| 2311 | } | |
| 2312 | { | |
| 2313 | if (true) { | |
| 2314 | throw (Error) jjte000; | |
| 2315 | } | |
| 2316 | } | |
| 2317 | } finally { | |
| 2318 |
6
1. TypeArguments : negated conditional → SURVIVED 2. TypeArguments : removed conditional - replaced equality check with false → SURVIVED 3. TypeArguments : removed conditional - replaced equality check with false → SURVIVED 4. TypeArguments : removed conditional - replaced equality check with true → SURVIVED 5. TypeArguments : negated conditional → KILLED 6. TypeArguments : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2319 |
4
1. TypeArguments : Substituted 1 with 0 → SURVIVED 2. TypeArguments : Substituted 1 with 0 → SURVIVED 3. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. TypeArguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2320 | } | |
| 2321 | } | |
| 2322 | } | |
| 2323 | ||
| 2324 | final public void TypeArgument() throws ParseException { | |
| 2325 | /*@bgen(jjtree) TypeArgument */ | |
| 2326 |
2
1. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. TypeArgument : Substituted 32 with 33 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTYPEARGUMENT); |
| 2327 |
1
1. TypeArgument : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2328 |
1
1. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2329 | try { | |
| 2330 |
16
1. TypeArgument : Substituted -1 with 0 → SURVIVED 2. TypeArgument : negated conditional → SURVIVED 3. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. TypeArgument : removed conditional - replaced equality check with false → SURVIVED 5. TypeArgument : removed conditional - replaced equality check with true → SURVIVED 6. TypeArgument : RemoveSwitch 0 mutation → SURVIVED 7. TypeArgument : RemoveSwitch 1 mutation → SURVIVED 8. TypeArgument : RemoveSwitch 2 mutation → SURVIVED 9. TypeArgument : RemoveSwitch 3 mutation → SURVIVED 10. TypeArgument : RemoveSwitch 4 mutation → SURVIVED 11. TypeArgument : RemoveSwitch 5 mutation → SURVIVED 12. TypeArgument : RemoveSwitch 6 mutation → SURVIVED 13. TypeArgument : RemoveSwitch 7 mutation → SURVIVED 14. TypeArgument : RemoveSwitch 8 mutation → SURVIVED 15. TypeArgument : RemoveSwitch 9 mutation → SURVIVED 16. TypeArgument : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2331 | case BOOLEAN: | |
| 2332 | case BYTE: | |
| 2333 | case CHAR: | |
| 2334 | case DOUBLE: | |
| 2335 | case FLOAT: | |
| 2336 | case INT: | |
| 2337 | case LONG: | |
| 2338 | case SHORT: | |
| 2339 | case IDENTIFIER: | |
| 2340 |
1
1. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ReferenceType → NO_COVERAGE |
ReferenceType(); |
| 2341 | break; | |
| 2342 | case HOOK: | |
| 2343 |
2
1. TypeArgument : Substituted 91 with 92 → NO_COVERAGE 2. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(HOOK); |
| 2344 |
8
1. TypeArgument : Substituted -1 with 0 → NO_COVERAGE 2. TypeArgument : negated conditional → NO_COVERAGE 3. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. TypeArgument : removed conditional - replaced equality check with false → NO_COVERAGE 5. TypeArgument : removed conditional - replaced equality check with true → NO_COVERAGE 6. TypeArgument : RemoveSwitch 0 mutation → NO_COVERAGE 7. TypeArgument : RemoveSwitch 1 mutation → NO_COVERAGE 8. TypeArgument : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2345 | case EXTENDS: | |
| 2346 | case SUPER: | |
| 2347 |
1
1. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::WildcardBounds → NO_COVERAGE |
WildcardBounds(); |
| 2348 | break; | |
| 2349 | default: | |
| 2350 | ; | |
| 2351 | } | |
| 2352 | break; | |
| 2353 | default: | |
| 2354 |
2
1. TypeArgument : Substituted -1 with 0 → SURVIVED 2. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 2355 |
1
1. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 2356 | } | |
| 2357 | } catch (Throwable jjte000) { | |
| 2358 |
3
1. TypeArgument : removed conditional - replaced equality check with true → SURVIVED 2. TypeArgument : negated conditional → KILLED 3. TypeArgument : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2359 |
1
1. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2360 |
1
1. TypeArgument : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2361 | } else { | |
| 2362 |
1
1. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2363 | } | |
| 2364 |
3
1. TypeArgument : removed conditional - replaced equality check with true → SURVIVED 2. TypeArgument : negated conditional → KILLED 3. TypeArgument : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2365 | { | |
| 2366 | if (true) { | |
| 2367 | throw (RuntimeException) jjte000; | |
| 2368 | } | |
| 2369 | } | |
| 2370 | } | |
| 2371 |
3
1. TypeArgument : negated conditional → SURVIVED 2. TypeArgument : removed conditional - replaced equality check with false → SURVIVED 3. TypeArgument : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2372 | { | |
| 2373 | if (true) { | |
| 2374 | throw (ParseException) jjte000; | |
| 2375 | } | |
| 2376 | } | |
| 2377 | } | |
| 2378 | { | |
| 2379 | if (true) { | |
| 2380 | throw (Error) jjte000; | |
| 2381 | } | |
| 2382 | } | |
| 2383 | } finally { | |
| 2384 |
6
1. TypeArgument : negated conditional → SURVIVED 2. TypeArgument : removed conditional - replaced equality check with false → SURVIVED 3. TypeArgument : removed conditional - replaced equality check with false → SURVIVED 4. TypeArgument : removed conditional - replaced equality check with true → SURVIVED 5. TypeArgument : negated conditional → KILLED 6. TypeArgument : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2385 |
4
1. TypeArgument : Substituted 1 with 0 → SURVIVED 2. TypeArgument : Substituted 1 with 0 → SURVIVED 3. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. TypeArgument : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2386 | } | |
| 2387 | } | |
| 2388 | } | |
| 2389 | ||
| 2390 | final public void WildcardBounds() throws ParseException { | |
| 2391 | /*@bgen(jjtree) WildcardBounds */ | |
| 2392 |
2
1. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. WildcardBounds : Substituted 33 with 34 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTWILDCARDBOUNDS); |
| 2393 |
1
1. WildcardBounds : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 2394 |
1
1. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 2395 | try { | |
| 2396 |
8
1. WildcardBounds : Substituted -1 with 0 → NO_COVERAGE 2. WildcardBounds : negated conditional → NO_COVERAGE 3. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. WildcardBounds : removed conditional - replaced equality check with false → NO_COVERAGE 5. WildcardBounds : removed conditional - replaced equality check with true → NO_COVERAGE 6. WildcardBounds : RemoveSwitch 0 mutation → NO_COVERAGE 7. WildcardBounds : RemoveSwitch 1 mutation → NO_COVERAGE 8. WildcardBounds : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2397 | case EXTENDS: | |
| 2398 |
2
1. WildcardBounds : Substituted 29 with 30 → NO_COVERAGE 2. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(EXTENDS); |
| 2399 |
1
1. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ReferenceType → NO_COVERAGE |
ReferenceType(); |
| 2400 | break; | |
| 2401 | case SUPER: | |
| 2402 |
2
1. WildcardBounds : Substituted 54 with 55 → NO_COVERAGE 2. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SUPER); |
| 2403 |
1
1. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ReferenceType → NO_COVERAGE |
ReferenceType(); |
| 2404 | break; | |
| 2405 | default: | |
| 2406 |
2
1. WildcardBounds : Substituted -1 with 0 → NO_COVERAGE 2. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 2407 |
1
1. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 2408 | } | |
| 2409 | } catch (Throwable jjte000) { | |
| 2410 |
3
1. WildcardBounds : negated conditional → NO_COVERAGE 2. WildcardBounds : removed conditional - replaced equality check with false → NO_COVERAGE 3. WildcardBounds : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 2411 |
1
1. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 2412 |
1
1. WildcardBounds : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 2413 | } else { | |
| 2414 |
1
1. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2415 | } | |
| 2416 |
3
1. WildcardBounds : negated conditional → NO_COVERAGE 2. WildcardBounds : removed conditional - replaced equality check with false → NO_COVERAGE 3. WildcardBounds : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 2417 | { | |
| 2418 | if (true) { | |
| 2419 | throw (RuntimeException) jjte000; | |
| 2420 | } | |
| 2421 | } | |
| 2422 | } | |
| 2423 |
3
1. WildcardBounds : negated conditional → NO_COVERAGE 2. WildcardBounds : removed conditional - replaced equality check with false → NO_COVERAGE 3. WildcardBounds : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 2424 | { | |
| 2425 | if (true) { | |
| 2426 | throw (ParseException) jjte000; | |
| 2427 | } | |
| 2428 | } | |
| 2429 | } | |
| 2430 | { | |
| 2431 | if (true) { | |
| 2432 | throw (Error) jjte000; | |
| 2433 | } | |
| 2434 | } | |
| 2435 | } finally { | |
| 2436 |
6
1. WildcardBounds : negated conditional → NO_COVERAGE 2. WildcardBounds : negated conditional → NO_COVERAGE 3. WildcardBounds : removed conditional - replaced equality check with false → NO_COVERAGE 4. WildcardBounds : removed conditional - replaced equality check with false → NO_COVERAGE 5. WildcardBounds : removed conditional - replaced equality check with true → NO_COVERAGE 6. WildcardBounds : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 2437 |
4
1. WildcardBounds : Substituted 1 with 0 → NO_COVERAGE 2. WildcardBounds : Substituted 1 with 0 → NO_COVERAGE 3. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. WildcardBounds : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 2438 | } | |
| 2439 | } | |
| 2440 | } | |
| 2441 | ||
| 2442 | final public void PrimitiveType() throws ParseException { | |
| 2443 | /*@bgen(jjtree) PrimitiveType */ | |
| 2444 |
2
1. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. PrimitiveType : Substituted 34 with 35 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTPRIMITIVETYPE); |
| 2445 |
1
1. PrimitiveType : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 2446 |
1
1. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2447 | try { | |
| 2448 |
14
1. PrimitiveType : Substituted -1 with 0 → SURVIVED 2. PrimitiveType : negated conditional → SURVIVED 3. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. PrimitiveType : removed conditional - replaced equality check with false → SURVIVED 5. PrimitiveType : removed conditional - replaced equality check with true → SURVIVED 6. PrimitiveType : RemoveSwitch 0 mutation → SURVIVED 7. PrimitiveType : RemoveSwitch 1 mutation → SURVIVED 8. PrimitiveType : RemoveSwitch 2 mutation → SURVIVED 9. PrimitiveType : RemoveSwitch 3 mutation → SURVIVED 10. PrimitiveType : RemoveSwitch 4 mutation → SURVIVED 11. PrimitiveType : RemoveSwitch 5 mutation → SURVIVED 12. PrimitiveType : RemoveSwitch 6 mutation → SURVIVED 13. PrimitiveType : RemoveSwitch 7 mutation → SURVIVED 14. PrimitiveType : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2449 | case BOOLEAN: | |
| 2450 |
2
1. PrimitiveType : Substituted 15 with 16 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(BOOLEAN); |
| 2451 | break; | |
| 2452 | case CHAR: | |
| 2453 |
2
1. PrimitiveType : Substituted 20 with 21 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(CHAR); |
| 2454 | break; | |
| 2455 | case BYTE: | |
| 2456 |
2
1. PrimitiveType : Substituted 17 with 18 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(BYTE); |
| 2457 | break; | |
| 2458 | case SHORT: | |
| 2459 |
2
1. PrimitiveType : Substituted 51 with 52 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SHORT); |
| 2460 | break; | |
| 2461 | case INT: | |
| 2462 |
2
1. PrimitiveType : Substituted 40 with 41 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(INT); |
| 2463 | break; | |
| 2464 | case LONG: | |
| 2465 |
2
1. PrimitiveType : Substituted 42 with 43 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LONG); |
| 2466 | break; | |
| 2467 | case FLOAT: | |
| 2468 |
2
1. PrimitiveType : Substituted 33 with 34 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(FLOAT); |
| 2469 | break; | |
| 2470 | case DOUBLE: | |
| 2471 |
2
1. PrimitiveType : Substituted 26 with 27 → NO_COVERAGE 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOUBLE); |
| 2472 | break; | |
| 2473 | default: | |
| 2474 |
2
1. PrimitiveType : Substituted -1 with 0 → SURVIVED 2. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 2475 |
1
1. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 2476 | } | |
| 2477 | } finally { | |
| 2478 |
6
1. PrimitiveType : negated conditional → SURVIVED 2. PrimitiveType : negated conditional → SURVIVED 3. PrimitiveType : removed conditional - replaced equality check with false → SURVIVED 4. PrimitiveType : removed conditional - replaced equality check with false → SURVIVED 5. PrimitiveType : removed conditional - replaced equality check with true → SURVIVED 6. PrimitiveType : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 2479 |
4
1. PrimitiveType : Substituted 1 with 0 → SURVIVED 2. PrimitiveType : Substituted 1 with 0 → SURVIVED 3. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. PrimitiveType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2480 | } | |
| 2481 | } | |
| 2482 | } | |
| 2483 | ||
| 2484 | final public void ResultType() throws ParseException { | |
| 2485 | /*@bgen(jjtree) ResultType */ | |
| 2486 |
2
1. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ResultType : Substituted 35 with 36 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTRESULTTYPE); |
| 2487 |
1
1. ResultType : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2488 |
1
1. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2489 | try { | |
| 2490 |
16
1. ResultType : Substituted -1 with 0 → SURVIVED 2. ResultType : negated conditional → SURVIVED 3. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ResultType : removed conditional - replaced equality check with false → SURVIVED 5. ResultType : removed conditional - replaced equality check with true → SURVIVED 6. ResultType : RemoveSwitch 0 mutation → SURVIVED 7. ResultType : RemoveSwitch 1 mutation → SURVIVED 8. ResultType : RemoveSwitch 2 mutation → SURVIVED 9. ResultType : RemoveSwitch 3 mutation → SURVIVED 10. ResultType : RemoveSwitch 4 mutation → SURVIVED 11. ResultType : RemoveSwitch 5 mutation → SURVIVED 12. ResultType : RemoveSwitch 6 mutation → SURVIVED 13. ResultType : RemoveSwitch 7 mutation → SURVIVED 14. ResultType : RemoveSwitch 8 mutation → SURVIVED 15. ResultType : RemoveSwitch 9 mutation → SURVIVED 16. ResultType : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2491 | case VOID: | |
| 2492 |
2
1. ResultType : Substituted 63 with 64 → NO_COVERAGE 2. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(VOID); |
| 2493 | break; | |
| 2494 | case BOOLEAN: | |
| 2495 | case BYTE: | |
| 2496 | case CHAR: | |
| 2497 | case DOUBLE: | |
| 2498 | case FLOAT: | |
| 2499 | case INT: | |
| 2500 | case LONG: | |
| 2501 | case SHORT: | |
| 2502 | case IDENTIFIER: | |
| 2503 |
1
1. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → SURVIVED |
Type(); |
| 2504 | break; | |
| 2505 | default: | |
| 2506 |
2
1. ResultType : Substituted -1 with 0 → SURVIVED 2. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 2507 |
1
1. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 2508 | } | |
| 2509 | } catch (Throwable jjte000) { | |
| 2510 |
3
1. ResultType : removed conditional - replaced equality check with true → SURVIVED 2. ResultType : negated conditional → KILLED 3. ResultType : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2511 |
1
1. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2512 |
1
1. ResultType : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2513 | } else { | |
| 2514 |
1
1. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2515 | } | |
| 2516 |
3
1. ResultType : removed conditional - replaced equality check with true → SURVIVED 2. ResultType : negated conditional → KILLED 3. ResultType : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2517 | { | |
| 2518 | if (true) { | |
| 2519 | throw (RuntimeException) jjte000; | |
| 2520 | } | |
| 2521 | } | |
| 2522 | } | |
| 2523 |
3
1. ResultType : negated conditional → SURVIVED 2. ResultType : removed conditional - replaced equality check with false → SURVIVED 3. ResultType : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2524 | { | |
| 2525 | if (true) { | |
| 2526 | throw (ParseException) jjte000; | |
| 2527 | } | |
| 2528 | } | |
| 2529 | } | |
| 2530 | { | |
| 2531 | if (true) { | |
| 2532 | throw (Error) jjte000; | |
| 2533 | } | |
| 2534 | } | |
| 2535 | } finally { | |
| 2536 |
6
1. ResultType : negated conditional → SURVIVED 2. ResultType : removed conditional - replaced equality check with false → SURVIVED 3. ResultType : removed conditional - replaced equality check with false → SURVIVED 4. ResultType : removed conditional - replaced equality check with true → SURVIVED 5. ResultType : negated conditional → KILLED 6. ResultType : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2537 |
4
1. ResultType : Substituted 1 with 0 → SURVIVED 2. ResultType : Substituted 1 with 0 → SURVIVED 3. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ResultType : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2538 | } | |
| 2539 | } | |
| 2540 | } | |
| 2541 | ||
| 2542 | final public void Name() throws ParseException { | |
| 2543 | /*@bgen(jjtree) Name */ | |
| 2544 |
2
1. Name : Substituted 36 with 37 → SURVIVED 2. Name : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTNAME); |
| 2545 |
1
1. Name : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 2546 |
1
1. Name : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2547 | try { | |
| 2548 |
2
1. Name : Substituted 74 with 75 → KILLED 2. Name : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(IDENTIFIER); |
| 2549 | label_21:while (true) { | |
| 2550 |
5
1. Name : Substituted 2 with 3 → SURVIVED 2. Name : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_15 → SURVIVED 3. Name : removed conditional - replaced equality check with false → SURVIVED 4. Name : negated conditional → KILLED 5. Name : removed conditional - replaced equality check with true → KILLED |
if (jj_2_15(2)) { |
| 2551 | ; | |
| 2552 | } else { | |
| 2553 | break label_21; | |
| 2554 | } | |
| 2555 |
2
1. Name : Substituted 85 with 86 → KILLED 2. Name : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(DOT); |
| 2556 |
2
1. Name : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED 2. Name : Substituted 74 with 75 → KILLED |
jj_consume_token(IDENTIFIER); |
| 2557 | } | |
| 2558 | } finally { | |
| 2559 |
6
1. Name : negated conditional → SURVIVED 2. Name : negated conditional → SURVIVED 3. Name : removed conditional - replaced equality check with false → SURVIVED 4. Name : removed conditional - replaced equality check with false → SURVIVED 5. Name : removed conditional - replaced equality check with true → SURVIVED 6. Name : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 2560 |
4
1. Name : Substituted 1 with 0 → SURVIVED 2. Name : Substituted 1 with 0 → SURVIVED 3. Name : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Name : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2561 | } | |
| 2562 | } | |
| 2563 | } | |
| 2564 | ||
| 2565 | final public void NameList() throws ParseException { | |
| 2566 | /*@bgen(jjtree) NameList */ | |
| 2567 |
2
1. NameList : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. NameList : Substituted 37 with 38 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTNAMELIST); |
| 2568 |
1
1. NameList : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 2569 |
1
1. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2570 | try { | |
| 2571 |
1
1. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → KILLED |
Name(); |
| 2572 | label_22:while (true) { | |
| 2573 |
7
1. NameList : Substituted -1 with 0 → NO_COVERAGE 2. NameList : negated conditional → NO_COVERAGE 3. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. NameList : removed conditional - replaced equality check with false → NO_COVERAGE 5. NameList : removed conditional - replaced equality check with true → NO_COVERAGE 6. NameList : RemoveSwitch 0 mutation → NO_COVERAGE 7. NameList : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2574 | case COMMA: | |
| 2575 | ; | |
| 2576 | break; | |
| 2577 | default: | |
| 2578 | break label_22; | |
| 2579 | } | |
| 2580 |
2
1. NameList : Substituted 84 with 85 → NO_COVERAGE 2. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 2581 |
1
1. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → NO_COVERAGE |
Name(); |
| 2582 | } | |
| 2583 | } catch (Throwable jjte000) { | |
| 2584 |
3
1. NameList : negated conditional → SURVIVED 2. NameList : removed conditional - replaced equality check with false → SURVIVED 3. NameList : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 2585 |
1
1. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2586 |
1
1. NameList : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2587 | } else { | |
| 2588 |
1
1. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2589 | } | |
| 2590 |
3
1. NameList : negated conditional → SURVIVED 2. NameList : removed conditional - replaced equality check with false → SURVIVED 3. NameList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 2591 | { | |
| 2592 | if (true) { | |
| 2593 | throw (RuntimeException) jjte000; | |
| 2594 | } | |
| 2595 | } | |
| 2596 | } | |
| 2597 |
3
1. NameList : negated conditional → SURVIVED 2. NameList : removed conditional - replaced equality check with false → SURVIVED 3. NameList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 2598 | { | |
| 2599 | if (true) { | |
| 2600 | throw (ParseException) jjte000; | |
| 2601 | } | |
| 2602 | } | |
| 2603 | } | |
| 2604 | { | |
| 2605 | if (true) { | |
| 2606 | throw (Error) jjte000; | |
| 2607 | } | |
| 2608 | } | |
| 2609 | } finally { | |
| 2610 |
6
1. NameList : negated conditional → SURVIVED 2. NameList : removed conditional - replaced equality check with false → SURVIVED 3. NameList : removed conditional - replaced equality check with false → SURVIVED 4. NameList : removed conditional - replaced equality check with true → SURVIVED 5. NameList : negated conditional → KILLED 6. NameList : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2611 |
4
1. NameList : Substituted 1 with 0 → SURVIVED 2. NameList : Substituted 1 with 0 → SURVIVED 3. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. NameList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2612 | } | |
| 2613 | } | |
| 2614 | } | |
| 2615 | ||
| 2616 | /* | |
| 2617 | * Expression syntax follows. | |
| 2618 | */ | |
| 2619 | final public void Expression() throws ParseException { | |
| 2620 | /*@bgen(jjtree) Expression */ | |
| 2621 |
2
1. Expression : Substituted 38 with 39 → SURVIVED 2. Expression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTEXPRESSION); |
| 2622 |
1
1. Expression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2623 |
1
1. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2624 | try { | |
| 2625 |
1
1. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ConditionalExpression → KILLED |
ConditionalExpression(); |
| 2626 |
5
1. Expression : Substituted 2 with 3 → SURVIVED 2. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_16 → SURVIVED 3. Expression : removed conditional - replaced equality check with false → SURVIVED 4. Expression : negated conditional → KILLED 5. Expression : removed conditional - replaced equality check with true → KILLED |
if (jj_2_16(2)) { |
| 2627 |
1
1. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AssignmentOperator → NO_COVERAGE |
AssignmentOperator(); |
| 2628 |
1
1. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 2629 | } else { | |
| 2630 | ; | |
| 2631 | } | |
| 2632 | } catch (Throwable jjte000) { | |
| 2633 |
3
1. Expression : removed conditional - replaced equality check with true → SURVIVED 2. Expression : negated conditional → KILLED 3. Expression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2634 |
1
1. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2635 |
1
1. Expression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2636 | } else { | |
| 2637 |
1
1. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2638 | } | |
| 2639 |
3
1. Expression : removed conditional - replaced equality check with false → SURVIVED 2. Expression : negated conditional → KILLED 3. Expression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2640 | { | |
| 2641 | if (true) { | |
| 2642 | throw (RuntimeException) jjte000; | |
| 2643 | } | |
| 2644 | } | |
| 2645 | } | |
| 2646 |
3
1. Expression : removed conditional - replaced equality check with false → SURVIVED 2. Expression : negated conditional → KILLED 3. Expression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 2647 | { | |
| 2648 | if (true) { | |
| 2649 | throw (ParseException) jjte000; | |
| 2650 | } | |
| 2651 | } | |
| 2652 | } | |
| 2653 | { | |
| 2654 | if (true) { | |
| 2655 | throw (Error) jjte000; | |
| 2656 | } | |
| 2657 | } | |
| 2658 | } finally { | |
| 2659 |
6
1. Expression : negated conditional → SURVIVED 2. Expression : removed conditional - replaced equality check with false → SURVIVED 3. Expression : removed conditional - replaced equality check with false → SURVIVED 4. Expression : removed conditional - replaced equality check with true → SURVIVED 5. Expression : negated conditional → KILLED 6. Expression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2660 |
4
1. Expression : Substituted 1 with 0 → SURVIVED 2. Expression : Substituted 1 with 0 → SURVIVED 3. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Expression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2661 | } | |
| 2662 | } | |
| 2663 | } | |
| 2664 | ||
| 2665 | final public void AssignmentOperator() throws ParseException { | |
| 2666 | /*@bgen(jjtree) AssignmentOperator */ | |
| 2667 |
2
1. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. AssignmentOperator : Substituted 39 with 40 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTASSIGNMENTOPERATOR); |
| 2668 |
1
1. AssignmentOperator : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 2669 |
1
1. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2670 | try { | |
| 2671 |
40
1. AssignmentOperator : Substituted -1 with 0 → SURVIVED 2. AssignmentOperator : negated conditional → SURVIVED 3. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. AssignmentOperator : removed conditional - replaced equality check with false → SURVIVED 5. AssignmentOperator : removed conditional - replaced equality check with true → SURVIVED 6. AssignmentOperator : RemoveSwitch 0 mutation → SURVIVED 7. AssignmentOperator : RemoveSwitch 1 mutation → SURVIVED 8. AssignmentOperator : RemoveSwitch 10 mutation → SURVIVED 9. AssignmentOperator : RemoveSwitch 11 mutation → SURVIVED 10. AssignmentOperator : RemoveSwitch 12 mutation → SURVIVED 11. AssignmentOperator : RemoveSwitch 13 mutation → SURVIVED 12. AssignmentOperator : RemoveSwitch 14 mutation → SURVIVED 13. AssignmentOperator : RemoveSwitch 15 mutation → SURVIVED 14. AssignmentOperator : RemoveSwitch 16 mutation → SURVIVED 15. AssignmentOperator : RemoveSwitch 17 mutation → SURVIVED 16. AssignmentOperator : RemoveSwitch 18 mutation → SURVIVED 17. AssignmentOperator : RemoveSwitch 19 mutation → SURVIVED 18. AssignmentOperator : RemoveSwitch 2 mutation → SURVIVED 19. AssignmentOperator : RemoveSwitch 20 mutation → SURVIVED 20. AssignmentOperator : RemoveSwitch 21 mutation → SURVIVED 21. AssignmentOperator : RemoveSwitch 22 mutation → SURVIVED 22. AssignmentOperator : RemoveSwitch 23 mutation → SURVIVED 23. AssignmentOperator : RemoveSwitch 24 mutation → SURVIVED 24. AssignmentOperator : RemoveSwitch 25 mutation → SURVIVED 25. AssignmentOperator : RemoveSwitch 26 mutation → SURVIVED 26. AssignmentOperator : RemoveSwitch 27 mutation → SURVIVED 27. AssignmentOperator : RemoveSwitch 28 mutation → SURVIVED 28. AssignmentOperator : RemoveSwitch 29 mutation → SURVIVED 29. AssignmentOperator : RemoveSwitch 3 mutation → SURVIVED 30. AssignmentOperator : RemoveSwitch 30 mutation → SURVIVED 31. AssignmentOperator : RemoveSwitch 31 mutation → SURVIVED 32. AssignmentOperator : RemoveSwitch 32 mutation → SURVIVED 33. AssignmentOperator : RemoveSwitch 33 mutation → SURVIVED 34. AssignmentOperator : RemoveSwitch 4 mutation → SURVIVED 35. AssignmentOperator : RemoveSwitch 5 mutation → SURVIVED 36. AssignmentOperator : RemoveSwitch 6 mutation → SURVIVED 37. AssignmentOperator : RemoveSwitch 7 mutation → SURVIVED 38. AssignmentOperator : RemoveSwitch 8 mutation → SURVIVED 39. AssignmentOperator : RemoveSwitch 9 mutation → SURVIVED 40. AssignmentOperator : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2672 | case ASSIGN: | |
| 2673 |
2
1. AssignmentOperator : Substituted 87 with 88 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(ASSIGN); |
| 2674 | break; | |
| 2675 | case STARASSIGN: | |
| 2676 |
2
1. AssignmentOperator : Substituted 112 with 113 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(STARASSIGN); |
| 2677 | break; | |
| 2678 | case SLASHASSIGN: | |
| 2679 |
2
1. AssignmentOperator : Substituted 113 with 114 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SLASHASSIGN); |
| 2680 | break; | |
| 2681 | case REMASSIGN: | |
| 2682 |
2
1. AssignmentOperator : Substituted 117 with 118 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(REMASSIGN); |
| 2683 | break; | |
| 2684 | case PLUSASSIGN: | |
| 2685 |
2
1. AssignmentOperator : Substituted 110 with 111 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(PLUSASSIGN); |
| 2686 | break; | |
| 2687 | case MINUSASSIGN: | |
| 2688 |
2
1. AssignmentOperator : Substituted 111 with 112 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(MINUSASSIGN); |
| 2689 | break; | |
| 2690 | case LSHIFTASSIGN: | |
| 2691 |
2
1. AssignmentOperator : Substituted 118 with 119 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LSHIFTASSIGN); |
| 2692 | break; | |
| 2693 | case RSIGNEDSHIFTASSIGN: | |
| 2694 |
2
1. AssignmentOperator : Substituted 119 with 120 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RSIGNEDSHIFTASSIGN); |
| 2695 | break; | |
| 2696 | case RUNSIGNEDSHIFTASSIGN: | |
| 2697 |
2
1. AssignmentOperator : Substituted 120 with 121 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RUNSIGNEDSHIFTASSIGN); |
| 2698 | break; | |
| 2699 | case ANDASSIGN: | |
| 2700 |
2
1. AssignmentOperator : Substituted 114 with 115 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(ANDASSIGN); |
| 2701 | break; | |
| 2702 | case XORASSIGN: | |
| 2703 |
2
1. AssignmentOperator : Substituted 116 with 117 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(XORASSIGN); |
| 2704 | break; | |
| 2705 | case ORASSIGN: | |
| 2706 |
2
1. AssignmentOperator : Substituted 115 with 116 → NO_COVERAGE 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(ORASSIGN); |
| 2707 | break; | |
| 2708 | default: | |
| 2709 |
2
1. AssignmentOperator : Substituted -1 with 0 → SURVIVED 2. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 2710 |
1
1. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 2711 | } | |
| 2712 | } finally { | |
| 2713 |
6
1. AssignmentOperator : negated conditional → SURVIVED 2. AssignmentOperator : negated conditional → SURVIVED 3. AssignmentOperator : removed conditional - replaced equality check with false → SURVIVED 4. AssignmentOperator : removed conditional - replaced equality check with false → SURVIVED 5. AssignmentOperator : removed conditional - replaced equality check with true → SURVIVED 6. AssignmentOperator : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 2714 |
4
1. AssignmentOperator : Substituted 1 with 0 → SURVIVED 2. AssignmentOperator : Substituted 1 with 0 → SURVIVED 3. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. AssignmentOperator : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2715 | } | |
| 2716 | } | |
| 2717 | } | |
| 2718 | ||
| 2719 | final public void ConditionalExpression() throws ParseException { | |
| 2720 | /*@bgen(jjtree) ConditionalExpression */ | |
| 2721 |
2
1. ConditionalExpression : Substituted 40 with 41 → SURVIVED 2. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCONDITIONALEXPRESSION); |
| 2722 |
1
1. ConditionalExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2723 |
1
1. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2724 | try { | |
| 2725 |
1
1. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ConditionalOrExpression → KILLED |
ConditionalOrExpression(); |
| 2726 |
7
1. ConditionalExpression : Substituted -1 with 0 → SURVIVED 2. ConditionalExpression : negated conditional → SURVIVED 3. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ConditionalExpression : removed conditional - replaced equality check with false → SURVIVED 5. ConditionalExpression : removed conditional - replaced equality check with true → SURVIVED 6. ConditionalExpression : RemoveSwitch 0 mutation → KILLED 7. ConditionalExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2727 | case HOOK: | |
| 2728 |
2
1. ConditionalExpression : Substituted 91 with 92 → KILLED 2. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(HOOK); |
| 2729 |
1
1. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 2730 |
2
1. ConditionalExpression : Substituted 92 with 93 → SURVIVED 2. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(COLON); |
| 2731 |
1
1. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 2732 | break; | |
| 2733 | default: | |
| 2734 | ; | |
| 2735 | } | |
| 2736 | } catch (Throwable jjte000) { | |
| 2737 |
3
1. ConditionalExpression : removed conditional - replaced equality check with true → SURVIVED 2. ConditionalExpression : negated conditional → KILLED 3. ConditionalExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2738 |
1
1. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2739 |
1
1. ConditionalExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2740 | } else { | |
| 2741 |
1
1. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2742 | } | |
| 2743 |
3
1. ConditionalExpression : negated conditional → KILLED 2. ConditionalExpression : removed conditional - replaced equality check with false → KILLED 3. ConditionalExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2744 | { | |
| 2745 | if (true) { | |
| 2746 | throw (RuntimeException) jjte000; | |
| 2747 | } | |
| 2748 | } | |
| 2749 | } | |
| 2750 |
3
1. ConditionalExpression : removed conditional - replaced equality check with false → SURVIVED 2. ConditionalExpression : negated conditional → KILLED 3. ConditionalExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 2751 | { | |
| 2752 | if (true) { | |
| 2753 | throw (ParseException) jjte000; | |
| 2754 | } | |
| 2755 | } | |
| 2756 | } | |
| 2757 | { | |
| 2758 | if (true) { | |
| 2759 | throw (Error) jjte000; | |
| 2760 | } | |
| 2761 | } | |
| 2762 | } finally { | |
| 2763 |
6
1. ConditionalExpression : negated conditional → SURVIVED 2. ConditionalExpression : removed conditional - replaced equality check with false → SURVIVED 3. ConditionalExpression : removed conditional - replaced equality check with false → SURVIVED 4. ConditionalExpression : removed conditional - replaced equality check with true → SURVIVED 5. ConditionalExpression : negated conditional → KILLED 6. ConditionalExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2764 |
4
1. ConditionalExpression : Substituted 1 with 0 → SURVIVED 2. ConditionalExpression : Substituted 1 with 0 → SURVIVED 3. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ConditionalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2765 | } | |
| 2766 | } | |
| 2767 | } | |
| 2768 | ||
| 2769 | final public void ConditionalOrExpression() throws ParseException { | |
| 2770 | /*@bgen(jjtree) ConditionalOrExpression */ | |
| 2771 |
2
1. ConditionalOrExpression : Substituted 41 with 42 → SURVIVED 2. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCONDITIONALOREXPRESSION); |
| 2772 |
1
1. ConditionalOrExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2773 |
1
1. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2774 | try { | |
| 2775 |
1
1. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ConditionalAndExpression → KILLED |
ConditionalAndExpression(); |
| 2776 | label_23:while (true) { | |
| 2777 |
7
1. ConditionalOrExpression : Substituted -1 with 0 → SURVIVED 2. ConditionalOrExpression : negated conditional → SURVIVED 3. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ConditionalOrExpression : removed conditional - replaced equality check with false → SURVIVED 5. ConditionalOrExpression : removed conditional - replaced equality check with true → SURVIVED 6. ConditionalOrExpression : RemoveSwitch 0 mutation → SURVIVED 7. ConditionalOrExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2778 | case SC_OR: | |
| 2779 | ; | |
| 2780 | break; | |
| 2781 | default: | |
| 2782 | break label_23; | |
| 2783 | } | |
| 2784 |
2
1. ConditionalOrExpression : Substituted 97 with 98 → NO_COVERAGE 2. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SC_OR); |
| 2785 |
1
1. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ConditionalAndExpression → NO_COVERAGE |
ConditionalAndExpression(); |
| 2786 | } | |
| 2787 | } catch (Throwable jjte000) { | |
| 2788 |
3
1. ConditionalOrExpression : removed conditional - replaced equality check with true → SURVIVED 2. ConditionalOrExpression : negated conditional → KILLED 3. ConditionalOrExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2789 |
1
1. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2790 |
1
1. ConditionalOrExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2791 | } else { | |
| 2792 |
1
1. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2793 | } | |
| 2794 |
3
1. ConditionalOrExpression : negated conditional → KILLED 2. ConditionalOrExpression : removed conditional - replaced equality check with false → KILLED 3. ConditionalOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2795 | { | |
| 2796 | if (true) { | |
| 2797 | throw (RuntimeException) jjte000; | |
| 2798 | } | |
| 2799 | } | |
| 2800 | } | |
| 2801 |
3
1. ConditionalOrExpression : removed conditional - replaced equality check with false → SURVIVED 2. ConditionalOrExpression : negated conditional → KILLED 3. ConditionalOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 2802 | { | |
| 2803 | if (true) { | |
| 2804 | throw (ParseException) jjte000; | |
| 2805 | } | |
| 2806 | } | |
| 2807 | } | |
| 2808 | { | |
| 2809 | if (true) { | |
| 2810 | throw (Error) jjte000; | |
| 2811 | } | |
| 2812 | } | |
| 2813 | } finally { | |
| 2814 |
6
1. ConditionalOrExpression : negated conditional → SURVIVED 2. ConditionalOrExpression : removed conditional - replaced equality check with false → SURVIVED 3. ConditionalOrExpression : removed conditional - replaced equality check with false → SURVIVED 4. ConditionalOrExpression : removed conditional - replaced equality check with true → SURVIVED 5. ConditionalOrExpression : negated conditional → KILLED 6. ConditionalOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2815 |
4
1. ConditionalOrExpression : Substituted 1 with 0 → SURVIVED 2. ConditionalOrExpression : Substituted 1 with 0 → SURVIVED 3. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ConditionalOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2816 | } | |
| 2817 | } | |
| 2818 | } | |
| 2819 | ||
| 2820 | final public void ConditionalAndExpression() throws ParseException { | |
| 2821 | /*@bgen(jjtree) ConditionalAndExpression */ | |
| 2822 |
2
1. ConditionalAndExpression : Substituted 42 with 43 → SURVIVED 2. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCONDITIONALANDEXPRESSION); |
| 2823 |
1
1. ConditionalAndExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2824 |
1
1. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2825 | try { | |
| 2826 |
1
1. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::InclusiveOrExpression → KILLED |
InclusiveOrExpression(); |
| 2827 | label_24:while (true) { | |
| 2828 |
7
1. ConditionalAndExpression : Substituted -1 with 0 → SURVIVED 2. ConditionalAndExpression : negated conditional → SURVIVED 3. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ConditionalAndExpression : removed conditional - replaced equality check with false → SURVIVED 5. ConditionalAndExpression : removed conditional - replaced equality check with true → SURVIVED 6. ConditionalAndExpression : RemoveSwitch 0 mutation → SURVIVED 7. ConditionalAndExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2829 | case SC_AND: | |
| 2830 | ; | |
| 2831 | break; | |
| 2832 | default: | |
| 2833 | break label_24; | |
| 2834 | } | |
| 2835 |
2
1. ConditionalAndExpression : Substituted 98 with 99 → NO_COVERAGE 2. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SC_AND); |
| 2836 |
1
1. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::InclusiveOrExpression → NO_COVERAGE |
InclusiveOrExpression(); |
| 2837 | } | |
| 2838 | } catch (Throwable jjte000) { | |
| 2839 |
3
1. ConditionalAndExpression : removed conditional - replaced equality check with true → SURVIVED 2. ConditionalAndExpression : negated conditional → KILLED 3. ConditionalAndExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2840 |
1
1. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2841 |
1
1. ConditionalAndExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2842 | } else { | |
| 2843 |
1
1. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2844 | } | |
| 2845 |
3
1. ConditionalAndExpression : negated conditional → KILLED 2. ConditionalAndExpression : removed conditional - replaced equality check with false → KILLED 3. ConditionalAndExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2846 | { | |
| 2847 | if (true) { | |
| 2848 | throw (RuntimeException) jjte000; | |
| 2849 | } | |
| 2850 | } | |
| 2851 | } | |
| 2852 |
3
1. ConditionalAndExpression : removed conditional - replaced equality check with false → SURVIVED 2. ConditionalAndExpression : negated conditional → KILLED 3. ConditionalAndExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 2853 | { | |
| 2854 | if (true) { | |
| 2855 | throw (ParseException) jjte000; | |
| 2856 | } | |
| 2857 | } | |
| 2858 | } | |
| 2859 | { | |
| 2860 | if (true) { | |
| 2861 | throw (Error) jjte000; | |
| 2862 | } | |
| 2863 | } | |
| 2864 | } finally { | |
| 2865 |
6
1. ConditionalAndExpression : negated conditional → SURVIVED 2. ConditionalAndExpression : removed conditional - replaced equality check with false → SURVIVED 3. ConditionalAndExpression : removed conditional - replaced equality check with false → SURVIVED 4. ConditionalAndExpression : removed conditional - replaced equality check with true → SURVIVED 5. ConditionalAndExpression : negated conditional → KILLED 6. ConditionalAndExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2866 |
4
1. ConditionalAndExpression : Substituted 1 with 0 → SURVIVED 2. ConditionalAndExpression : Substituted 1 with 0 → SURVIVED 3. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ConditionalAndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2867 | } | |
| 2868 | } | |
| 2869 | } | |
| 2870 | ||
| 2871 | final public void InclusiveOrExpression() throws ParseException { | |
| 2872 | /*@bgen(jjtree) InclusiveOrExpression */ | |
| 2873 |
2
1. InclusiveOrExpression : Substituted 43 with 44 → SURVIVED 2. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTINCLUSIVEOREXPRESSION); |
| 2874 |
1
1. InclusiveOrExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2875 |
1
1. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2876 | try { | |
| 2877 |
1
1. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ExclusiveOrExpression → KILLED |
ExclusiveOrExpression(); |
| 2878 | label_25:while (true) { | |
| 2879 |
7
1. InclusiveOrExpression : Substituted -1 with 0 → SURVIVED 2. InclusiveOrExpression : negated conditional → SURVIVED 3. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. InclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 5. InclusiveOrExpression : removed conditional - replaced equality check with true → SURVIVED 6. InclusiveOrExpression : RemoveSwitch 0 mutation → SURVIVED 7. InclusiveOrExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2880 | case BIT_OR: | |
| 2881 | ; | |
| 2882 | break; | |
| 2883 | default: | |
| 2884 | break label_25; | |
| 2885 | } | |
| 2886 |
2
1. InclusiveOrExpression : Substituted 106 with 107 → NO_COVERAGE 2. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(BIT_OR); |
| 2887 |
1
1. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ExclusiveOrExpression → NO_COVERAGE |
ExclusiveOrExpression(); |
| 2888 | } | |
| 2889 | } catch (Throwable jjte000) { | |
| 2890 |
3
1. InclusiveOrExpression : removed conditional - replaced equality check with true → SURVIVED 2. InclusiveOrExpression : negated conditional → KILLED 3. InclusiveOrExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2891 |
1
1. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2892 |
1
1. InclusiveOrExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2893 | } else { | |
| 2894 |
1
1. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2895 | } | |
| 2896 |
3
1. InclusiveOrExpression : negated conditional → KILLED 2. InclusiveOrExpression : removed conditional - replaced equality check with false → KILLED 3. InclusiveOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2897 | { | |
| 2898 | if (true) { | |
| 2899 | throw (RuntimeException) jjte000; | |
| 2900 | } | |
| 2901 | } | |
| 2902 | } | |
| 2903 |
3
1. InclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 2. InclusiveOrExpression : negated conditional → KILLED 3. InclusiveOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 2904 | { | |
| 2905 | if (true) { | |
| 2906 | throw (ParseException) jjte000; | |
| 2907 | } | |
| 2908 | } | |
| 2909 | } | |
| 2910 | { | |
| 2911 | if (true) { | |
| 2912 | throw (Error) jjte000; | |
| 2913 | } | |
| 2914 | } | |
| 2915 | } finally { | |
| 2916 |
6
1. InclusiveOrExpression : negated conditional → SURVIVED 2. InclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 3. InclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 4. InclusiveOrExpression : removed conditional - replaced equality check with true → SURVIVED 5. InclusiveOrExpression : negated conditional → KILLED 6. InclusiveOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2917 |
4
1. InclusiveOrExpression : Substituted 1 with 0 → SURVIVED 2. InclusiveOrExpression : Substituted 1 with 0 → SURVIVED 3. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. InclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2918 | } | |
| 2919 | } | |
| 2920 | } | |
| 2921 | ||
| 2922 | final public void ExclusiveOrExpression() throws ParseException { | |
| 2923 | /*@bgen(jjtree) ExclusiveOrExpression */ | |
| 2924 |
2
1. ExclusiveOrExpression : Substituted 44 with 45 → SURVIVED 2. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTEXCLUSIVEOREXPRESSION); |
| 2925 |
1
1. ExclusiveOrExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2926 |
1
1. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2927 | try { | |
| 2928 |
1
1. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AndExpression → KILLED |
AndExpression(); |
| 2929 | label_26:while (true) { | |
| 2930 |
7
1. ExclusiveOrExpression : Substituted -1 with 0 → SURVIVED 2. ExclusiveOrExpression : negated conditional → SURVIVED 3. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ExclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 5. ExclusiveOrExpression : removed conditional - replaced equality check with true → SURVIVED 6. ExclusiveOrExpression : RemoveSwitch 0 mutation → SURVIVED 7. ExclusiveOrExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2931 | case XOR: | |
| 2932 | ; | |
| 2933 | break; | |
| 2934 | default: | |
| 2935 | break label_26; | |
| 2936 | } | |
| 2937 |
2
1. ExclusiveOrExpression : Substituted 107 with 108 → NO_COVERAGE 2. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(XOR); |
| 2938 |
1
1. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AndExpression → NO_COVERAGE |
AndExpression(); |
| 2939 | } | |
| 2940 | } catch (Throwable jjte000) { | |
| 2941 |
3
1. ExclusiveOrExpression : removed conditional - replaced equality check with true → SURVIVED 2. ExclusiveOrExpression : negated conditional → KILLED 3. ExclusiveOrExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2942 |
1
1. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2943 |
1
1. ExclusiveOrExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2944 | } else { | |
| 2945 |
1
1. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2946 | } | |
| 2947 |
3
1. ExclusiveOrExpression : negated conditional → KILLED 2. ExclusiveOrExpression : removed conditional - replaced equality check with false → KILLED 3. ExclusiveOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2948 | { | |
| 2949 | if (true) { | |
| 2950 | throw (RuntimeException) jjte000; | |
| 2951 | } | |
| 2952 | } | |
| 2953 | } | |
| 2954 |
3
1. ExclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 2. ExclusiveOrExpression : negated conditional → KILLED 3. ExclusiveOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 2955 | { | |
| 2956 | if (true) { | |
| 2957 | throw (ParseException) jjte000; | |
| 2958 | } | |
| 2959 | } | |
| 2960 | } | |
| 2961 | { | |
| 2962 | if (true) { | |
| 2963 | throw (Error) jjte000; | |
| 2964 | } | |
| 2965 | } | |
| 2966 | } finally { | |
| 2967 |
6
1. ExclusiveOrExpression : negated conditional → SURVIVED 2. ExclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 3. ExclusiveOrExpression : removed conditional - replaced equality check with false → SURVIVED 4. ExclusiveOrExpression : removed conditional - replaced equality check with true → SURVIVED 5. ExclusiveOrExpression : negated conditional → KILLED 6. ExclusiveOrExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 2968 |
4
1. ExclusiveOrExpression : Substituted 1 with 0 → SURVIVED 2. ExclusiveOrExpression : Substituted 1 with 0 → SURVIVED 3. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ExclusiveOrExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 2969 | } | |
| 2970 | } | |
| 2971 | } | |
| 2972 | ||
| 2973 | final public void AndExpression() throws ParseException { | |
| 2974 | /*@bgen(jjtree) AndExpression */ | |
| 2975 |
2
1. AndExpression : Substituted 45 with 46 → SURVIVED 2. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTANDEXPRESSION); |
| 2976 |
1
1. AndExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 2977 |
1
1. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 2978 | try { | |
| 2979 |
1
1. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EqualityExpression → KILLED |
EqualityExpression(); |
| 2980 | label_27:while (true) { | |
| 2981 |
7
1. AndExpression : Substituted -1 with 0 → SURVIVED 2. AndExpression : negated conditional → SURVIVED 3. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. AndExpression : removed conditional - replaced equality check with false → SURVIVED 5. AndExpression : removed conditional - replaced equality check with true → SURVIVED 6. AndExpression : RemoveSwitch 0 mutation → KILLED 7. AndExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 2982 | case BIT_AND: | |
| 2983 | ; | |
| 2984 | break; | |
| 2985 | default: | |
| 2986 | break label_27; | |
| 2987 | } | |
| 2988 |
2
1. AndExpression : Substituted 105 with 106 → SURVIVED 2. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(BIT_AND); |
| 2989 |
1
1. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EqualityExpression → KILLED |
EqualityExpression(); |
| 2990 | } | |
| 2991 | } catch (Throwable jjte000) { | |
| 2992 |
3
1. AndExpression : removed conditional - replaced equality check with true → SURVIVED 2. AndExpression : negated conditional → KILLED 3. AndExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 2993 |
1
1. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 2994 |
1
1. AndExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 2995 | } else { | |
| 2996 |
1
1. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 2997 | } | |
| 2998 |
3
1. AndExpression : negated conditional → KILLED 2. AndExpression : removed conditional - replaced equality check with false → KILLED 3. AndExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 2999 | { | |
| 3000 | if (true) { | |
| 3001 | throw (RuntimeException) jjte000; | |
| 3002 | } | |
| 3003 | } | |
| 3004 | } | |
| 3005 |
3
1. AndExpression : removed conditional - replaced equality check with false → SURVIVED 2. AndExpression : negated conditional → KILLED 3. AndExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3006 | { | |
| 3007 | if (true) { | |
| 3008 | throw (ParseException) jjte000; | |
| 3009 | } | |
| 3010 | } | |
| 3011 | } | |
| 3012 | { | |
| 3013 | if (true) { | |
| 3014 | throw (Error) jjte000; | |
| 3015 | } | |
| 3016 | } | |
| 3017 | } finally { | |
| 3018 |
6
1. AndExpression : negated conditional → SURVIVED 2. AndExpression : removed conditional - replaced equality check with false → SURVIVED 3. AndExpression : removed conditional - replaced equality check with false → SURVIVED 4. AndExpression : removed conditional - replaced equality check with true → SURVIVED 5. AndExpression : negated conditional → KILLED 6. AndExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3019 |
4
1. AndExpression : Substituted 1 with 0 → SURVIVED 2. AndExpression : Substituted 1 with 0 → SURVIVED 3. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. AndExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3020 | } | |
| 3021 | } | |
| 3022 | } | |
| 3023 | ||
| 3024 | final public void EqualityExpression() throws ParseException { | |
| 3025 | /*@bgen(jjtree) EqualityExpression */ | |
| 3026 |
2
1. EqualityExpression : Substituted 46 with 47 → SURVIVED 2. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTEQUALITYEXPRESSION); |
| 3027 |
1
1. EqualityExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3028 |
1
1. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3029 | try { | |
| 3030 |
1
1. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::InstanceOfExpression → KILLED |
InstanceOfExpression(); |
| 3031 | label_28:while (true) { | |
| 3032 |
8
1. EqualityExpression : Substituted -1 with 0 → SURVIVED 2. EqualityExpression : negated conditional → SURVIVED 3. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. EqualityExpression : removed conditional - replaced equality check with false → SURVIVED 5. EqualityExpression : removed conditional - replaced equality check with true → SURVIVED 6. EqualityExpression : RemoveSwitch 0 mutation → SURVIVED 7. EqualityExpression : RemoveSwitch 1 mutation → SURVIVED 8. EqualityExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3033 | case EQ: | |
| 3034 | case NE: | |
| 3035 | ; | |
| 3036 | break; | |
| 3037 | default: | |
| 3038 | break label_28; | |
| 3039 | } | |
| 3040 |
8
1. EqualityExpression : Substituted -1 with 0 → NO_COVERAGE 2. EqualityExpression : negated conditional → NO_COVERAGE 3. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. EqualityExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. EqualityExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. EqualityExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. EqualityExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. EqualityExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3041 | case EQ: | |
| 3042 |
2
1. EqualityExpression : Substituted 93 with 94 → NO_COVERAGE 2. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(EQ); |
| 3043 | break; | |
| 3044 | case NE: | |
| 3045 |
2
1. EqualityExpression : Substituted 96 with 97 → NO_COVERAGE 2. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(NE); |
| 3046 | break; | |
| 3047 | default: | |
| 3048 |
2
1. EqualityExpression : Substituted -1 with 0 → NO_COVERAGE 2. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3049 |
1
1. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3050 | } | |
| 3051 |
1
1. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::InstanceOfExpression → NO_COVERAGE |
InstanceOfExpression(); |
| 3052 | } | |
| 3053 | } catch (Throwable jjte000) { | |
| 3054 |
3
1. EqualityExpression : removed conditional - replaced equality check with true → SURVIVED 2. EqualityExpression : negated conditional → KILLED 3. EqualityExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3055 |
1
1. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3056 |
1
1. EqualityExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3057 | } else { | |
| 3058 |
1
1. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3059 | } | |
| 3060 |
3
1. EqualityExpression : negated conditional → KILLED 2. EqualityExpression : removed conditional - replaced equality check with false → KILLED 3. EqualityExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3061 | { | |
| 3062 | if (true) { | |
| 3063 | throw (RuntimeException) jjte000; | |
| 3064 | } | |
| 3065 | } | |
| 3066 | } | |
| 3067 |
3
1. EqualityExpression : removed conditional - replaced equality check with false → SURVIVED 2. EqualityExpression : negated conditional → KILLED 3. EqualityExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3068 | { | |
| 3069 | if (true) { | |
| 3070 | throw (ParseException) jjte000; | |
| 3071 | } | |
| 3072 | } | |
| 3073 | } | |
| 3074 | { | |
| 3075 | if (true) { | |
| 3076 | throw (Error) jjte000; | |
| 3077 | } | |
| 3078 | } | |
| 3079 | } finally { | |
| 3080 |
6
1. EqualityExpression : negated conditional → SURVIVED 2. EqualityExpression : removed conditional - replaced equality check with false → SURVIVED 3. EqualityExpression : removed conditional - replaced equality check with false → SURVIVED 4. EqualityExpression : removed conditional - replaced equality check with true → SURVIVED 5. EqualityExpression : negated conditional → KILLED 6. EqualityExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3081 |
4
1. EqualityExpression : Substituted 1 with 0 → SURVIVED 2. EqualityExpression : Substituted 1 with 0 → SURVIVED 3. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. EqualityExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3082 | } | |
| 3083 | } | |
| 3084 | } | |
| 3085 | ||
| 3086 | final public void InstanceOfExpression() throws ParseException { | |
| 3087 | /*@bgen(jjtree) InstanceOfExpression */ | |
| 3088 |
2
1. InstanceOfExpression : Substituted 47 with 48 → SURVIVED 2. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTINSTANCEOFEXPRESSION); |
| 3089 |
1
1. InstanceOfExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3090 |
1
1. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3091 | try { | |
| 3092 |
1
1. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::RelationalExpression → KILLED |
RelationalExpression(); |
| 3093 |
7
1. InstanceOfExpression : Substituted -1 with 0 → SURVIVED 2. InstanceOfExpression : negated conditional → SURVIVED 3. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. InstanceOfExpression : removed conditional - replaced equality check with false → SURVIVED 5. InstanceOfExpression : removed conditional - replaced equality check with true → SURVIVED 6. InstanceOfExpression : RemoveSwitch 0 mutation → SURVIVED 7. InstanceOfExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3094 | case INSTANCEOF: | |
| 3095 |
2
1. InstanceOfExpression : Substituted 39 with 40 → NO_COVERAGE 2. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(INSTANCEOF); |
| 3096 |
1
1. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → NO_COVERAGE |
Type(); |
| 3097 | break; | |
| 3098 | default: | |
| 3099 | ; | |
| 3100 | } | |
| 3101 | } catch (Throwable jjte000) { | |
| 3102 |
3
1. InstanceOfExpression : removed conditional - replaced equality check with true → SURVIVED 2. InstanceOfExpression : negated conditional → KILLED 3. InstanceOfExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3103 |
1
1. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3104 |
1
1. InstanceOfExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3105 | } else { | |
| 3106 |
1
1. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3107 | } | |
| 3108 |
3
1. InstanceOfExpression : negated conditional → KILLED 2. InstanceOfExpression : removed conditional - replaced equality check with false → KILLED 3. InstanceOfExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3109 | { | |
| 3110 | if (true) { | |
| 3111 | throw (RuntimeException) jjte000; | |
| 3112 | } | |
| 3113 | } | |
| 3114 | } | |
| 3115 |
3
1. InstanceOfExpression : removed conditional - replaced equality check with false → SURVIVED 2. InstanceOfExpression : negated conditional → KILLED 3. InstanceOfExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3116 | { | |
| 3117 | if (true) { | |
| 3118 | throw (ParseException) jjte000; | |
| 3119 | } | |
| 3120 | } | |
| 3121 | } | |
| 3122 | { | |
| 3123 | if (true) { | |
| 3124 | throw (Error) jjte000; | |
| 3125 | } | |
| 3126 | } | |
| 3127 | } finally { | |
| 3128 |
6
1. InstanceOfExpression : negated conditional → SURVIVED 2. InstanceOfExpression : removed conditional - replaced equality check with false → SURVIVED 3. InstanceOfExpression : removed conditional - replaced equality check with false → SURVIVED 4. InstanceOfExpression : removed conditional - replaced equality check with true → SURVIVED 5. InstanceOfExpression : negated conditional → KILLED 6. InstanceOfExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3129 |
4
1. InstanceOfExpression : Substituted 1 with 0 → SURVIVED 2. InstanceOfExpression : Substituted 1 with 0 → SURVIVED 3. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. InstanceOfExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3130 | } | |
| 3131 | } | |
| 3132 | } | |
| 3133 | ||
| 3134 | final public void RelationalExpression() throws ParseException { | |
| 3135 | /*@bgen(jjtree) RelationalExpression */ | |
| 3136 |
2
1. RelationalExpression : Substituted 48 with 49 → SURVIVED 2. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTRELATIONALEXPRESSION); |
| 3137 |
1
1. RelationalExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3138 |
1
1. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3139 | try { | |
| 3140 |
1
1. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ShiftExpression → KILLED |
ShiftExpression(); |
| 3141 | label_29:while (true) { | |
| 3142 |
10
1. RelationalExpression : Substituted -1 with 0 → SURVIVED 2. RelationalExpression : negated conditional → SURVIVED 3. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. RelationalExpression : removed conditional - replaced equality check with false → SURVIVED 5. RelationalExpression : removed conditional - replaced equality check with true → SURVIVED 6. RelationalExpression : RemoveSwitch 0 mutation → SURVIVED 7. RelationalExpression : RemoveSwitch 1 mutation → SURVIVED 8. RelationalExpression : RemoveSwitch 2 mutation → SURVIVED 9. RelationalExpression : RemoveSwitch 3 mutation → SURVIVED 10. RelationalExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3143 | case LT: | |
| 3144 | case LE: | |
| 3145 | case GE: | |
| 3146 | case GT: | |
| 3147 | ; | |
| 3148 | break; | |
| 3149 | default: | |
| 3150 | break label_29; | |
| 3151 | } | |
| 3152 |
10
1. RelationalExpression : Substituted -1 with 0 → NO_COVERAGE 2. RelationalExpression : negated conditional → NO_COVERAGE 3. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. RelationalExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. RelationalExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. RelationalExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. RelationalExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. RelationalExpression : RemoveSwitch 2 mutation → NO_COVERAGE 9. RelationalExpression : RemoveSwitch 3 mutation → NO_COVERAGE 10. RelationalExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3153 | case LT: | |
| 3154 |
2
1. RelationalExpression : Substituted 88 with 89 → NO_COVERAGE 2. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LT); |
| 3155 | break; | |
| 3156 | case GT: | |
| 3157 |
2
1. RelationalExpression : Substituted 124 with 125 → NO_COVERAGE 2. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 3158 | break; | |
| 3159 | case LE: | |
| 3160 |
2
1. RelationalExpression : Substituted 94 with 95 → NO_COVERAGE 2. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LE); |
| 3161 | break; | |
| 3162 | case GE: | |
| 3163 |
2
1. RelationalExpression : Substituted 95 with 96 → NO_COVERAGE 2. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GE); |
| 3164 | break; | |
| 3165 | default: | |
| 3166 |
2
1. RelationalExpression : Substituted -1 with 0 → NO_COVERAGE 2. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3167 |
1
1. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3168 | } | |
| 3169 |
1
1. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ShiftExpression → NO_COVERAGE |
ShiftExpression(); |
| 3170 | } | |
| 3171 | } catch (Throwable jjte000) { | |
| 3172 |
3
1. RelationalExpression : removed conditional - replaced equality check with true → SURVIVED 2. RelationalExpression : negated conditional → KILLED 3. RelationalExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3173 |
1
1. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3174 |
1
1. RelationalExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3175 | } else { | |
| 3176 |
1
1. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3177 | } | |
| 3178 |
3
1. RelationalExpression : negated conditional → KILLED 2. RelationalExpression : removed conditional - replaced equality check with false → KILLED 3. RelationalExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3179 | { | |
| 3180 | if (true) { | |
| 3181 | throw (RuntimeException) jjte000; | |
| 3182 | } | |
| 3183 | } | |
| 3184 | } | |
| 3185 |
3
1. RelationalExpression : removed conditional - replaced equality check with false → SURVIVED 2. RelationalExpression : negated conditional → KILLED 3. RelationalExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3186 | { | |
| 3187 | if (true) { | |
| 3188 | throw (ParseException) jjte000; | |
| 3189 | } | |
| 3190 | } | |
| 3191 | } | |
| 3192 | { | |
| 3193 | if (true) { | |
| 3194 | throw (Error) jjte000; | |
| 3195 | } | |
| 3196 | } | |
| 3197 | } finally { | |
| 3198 |
6
1. RelationalExpression : negated conditional → SURVIVED 2. RelationalExpression : removed conditional - replaced equality check with false → SURVIVED 3. RelationalExpression : removed conditional - replaced equality check with false → SURVIVED 4. RelationalExpression : removed conditional - replaced equality check with true → SURVIVED 5. RelationalExpression : negated conditional → KILLED 6. RelationalExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3199 |
4
1. RelationalExpression : Substituted 1 with 0 → SURVIVED 2. RelationalExpression : Substituted 1 with 0 → SURVIVED 3. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. RelationalExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3200 | } | |
| 3201 | } | |
| 3202 | } | |
| 3203 | ||
| 3204 | final public void ShiftExpression() throws ParseException { | |
| 3205 | /*@bgen(jjtree) ShiftExpression */ | |
| 3206 |
2
1. ShiftExpression : Substituted 49 with 50 → SURVIVED 2. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSHIFTEXPRESSION); |
| 3207 |
1
1. ShiftExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3208 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3209 | try { | |
| 3210 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AdditiveExpression → KILLED |
AdditiveExpression(); |
| 3211 | label_30:while (true) { | |
| 3212 |
5
1. ShiftExpression : Substituted 1 with 0 → SURVIVED 2. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_17 → SURVIVED 3. ShiftExpression : removed conditional - replaced equality check with false → SURVIVED 4. ShiftExpression : negated conditional → KILLED 5. ShiftExpression : removed conditional - replaced equality check with true → KILLED |
if (jj_2_17(1)) { |
| 3213 | ; | |
| 3214 | } else { | |
| 3215 | break label_30; | |
| 3216 | } | |
| 3217 |
7
1. ShiftExpression : Substituted -1 with 0 → NO_COVERAGE 2. ShiftExpression : negated conditional → NO_COVERAGE 3. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ShiftExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. ShiftExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. ShiftExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. ShiftExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3218 | case LSHIFT: | |
| 3219 |
2
1. ShiftExpression : Substituted 109 with 110 → NO_COVERAGE 2. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LSHIFT); |
| 3220 | break; | |
| 3221 | default: | |
| 3222 |
5
1. ShiftExpression : Substituted 1 with 0 → NO_COVERAGE 2. ShiftExpression : negated conditional → NO_COVERAGE 3. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_18 → NO_COVERAGE 4. ShiftExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. ShiftExpression : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_18(1)) { |
| 3223 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::RSIGNEDSHIFT → NO_COVERAGE |
RSIGNEDSHIFT(); |
| 3224 |
5
1. ShiftExpression : Substituted 1 with 0 → NO_COVERAGE 2. ShiftExpression : negated conditional → NO_COVERAGE 3. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_19 → NO_COVERAGE 4. ShiftExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. ShiftExpression : removed conditional - replaced equality check with true → NO_COVERAGE |
} else if (jj_2_19(1)) { |
| 3225 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::RUNSIGNEDSHIFT → NO_COVERAGE |
RUNSIGNEDSHIFT(); |
| 3226 | } else { | |
| 3227 |
2
1. ShiftExpression : Substituted -1 with 0 → NO_COVERAGE 2. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3228 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3229 | } | |
| 3230 | } | |
| 3231 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AdditiveExpression → NO_COVERAGE |
AdditiveExpression(); |
| 3232 | } | |
| 3233 | } catch (Throwable jjte000) { | |
| 3234 |
3
1. ShiftExpression : removed conditional - replaced equality check with true → SURVIVED 2. ShiftExpression : negated conditional → KILLED 3. ShiftExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3235 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3236 |
1
1. ShiftExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3237 | } else { | |
| 3238 |
1
1. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3239 | } | |
| 3240 |
3
1. ShiftExpression : negated conditional → KILLED 2. ShiftExpression : removed conditional - replaced equality check with false → KILLED 3. ShiftExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3241 | { | |
| 3242 | if (true) { | |
| 3243 | throw (RuntimeException) jjte000; | |
| 3244 | } | |
| 3245 | } | |
| 3246 | } | |
| 3247 |
3
1. ShiftExpression : removed conditional - replaced equality check with false → SURVIVED 2. ShiftExpression : negated conditional → KILLED 3. ShiftExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3248 | { | |
| 3249 | if (true) { | |
| 3250 | throw (ParseException) jjte000; | |
| 3251 | } | |
| 3252 | } | |
| 3253 | } | |
| 3254 | { | |
| 3255 | if (true) { | |
| 3256 | throw (Error) jjte000; | |
| 3257 | } | |
| 3258 | } | |
| 3259 | } finally { | |
| 3260 |
6
1. ShiftExpression : negated conditional → SURVIVED 2. ShiftExpression : removed conditional - replaced equality check with false → SURVIVED 3. ShiftExpression : removed conditional - replaced equality check with false → SURVIVED 4. ShiftExpression : removed conditional - replaced equality check with true → SURVIVED 5. ShiftExpression : negated conditional → KILLED 6. ShiftExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3261 |
4
1. ShiftExpression : Substituted 1 with 0 → SURVIVED 2. ShiftExpression : Substituted 1 with 0 → SURVIVED 3. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ShiftExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3262 | } | |
| 3263 | } | |
| 3264 | } | |
| 3265 | ||
| 3266 | final public void AdditiveExpression() throws ParseException { | |
| 3267 | /*@bgen(jjtree) AdditiveExpression */ | |
| 3268 |
2
1. AdditiveExpression : Substituted 50 with 51 → SURVIVED 2. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTADDITIVEEXPRESSION); |
| 3269 |
1
1. AdditiveExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3270 |
1
1. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3271 | try { | |
| 3272 |
1
1. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MultiplicativeExpression → KILLED |
MultiplicativeExpression(); |
| 3273 | label_31:while (true) { | |
| 3274 |
8
1. AdditiveExpression : Substituted -1 with 0 → SURVIVED 2. AdditiveExpression : negated conditional → SURVIVED 3. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. AdditiveExpression : removed conditional - replaced equality check with false → SURVIVED 5. AdditiveExpression : removed conditional - replaced equality check with true → SURVIVED 6. AdditiveExpression : RemoveSwitch 0 mutation → SURVIVED 7. AdditiveExpression : RemoveSwitch 1 mutation → SURVIVED 8. AdditiveExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3275 | case PLUS: | |
| 3276 | case MINUS: | |
| 3277 | ; | |
| 3278 | break; | |
| 3279 | default: | |
| 3280 | break label_31; | |
| 3281 | } | |
| 3282 |
8
1. AdditiveExpression : Substituted -1 with 0 → NO_COVERAGE 2. AdditiveExpression : negated conditional → NO_COVERAGE 3. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. AdditiveExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. AdditiveExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. AdditiveExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. AdditiveExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. AdditiveExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3283 | case PLUS: | |
| 3284 |
2
1. AdditiveExpression : Substituted 101 with 102 → NO_COVERAGE 2. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(PLUS); |
| 3285 | break; | |
| 3286 | case MINUS: | |
| 3287 |
2
1. AdditiveExpression : Substituted 102 with 103 → NO_COVERAGE 2. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(MINUS); |
| 3288 | break; | |
| 3289 | default: | |
| 3290 |
2
1. AdditiveExpression : Substituted -1 with 0 → NO_COVERAGE 2. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3291 |
1
1. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3292 | } | |
| 3293 |
1
1. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MultiplicativeExpression → NO_COVERAGE |
MultiplicativeExpression(); |
| 3294 | } | |
| 3295 | } catch (Throwable jjte000) { | |
| 3296 |
3
1. AdditiveExpression : removed conditional - replaced equality check with true → SURVIVED 2. AdditiveExpression : negated conditional → KILLED 3. AdditiveExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3297 |
1
1. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3298 |
1
1. AdditiveExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3299 | } else { | |
| 3300 |
1
1. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3301 | } | |
| 3302 |
3
1. AdditiveExpression : negated conditional → KILLED 2. AdditiveExpression : removed conditional - replaced equality check with false → KILLED 3. AdditiveExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3303 | { | |
| 3304 | if (true) { | |
| 3305 | throw (RuntimeException) jjte000; | |
| 3306 | } | |
| 3307 | } | |
| 3308 | } | |
| 3309 |
3
1. AdditiveExpression : removed conditional - replaced equality check with false → SURVIVED 2. AdditiveExpression : negated conditional → KILLED 3. AdditiveExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3310 | { | |
| 3311 | if (true) { | |
| 3312 | throw (ParseException) jjte000; | |
| 3313 | } | |
| 3314 | } | |
| 3315 | } | |
| 3316 | { | |
| 3317 | if (true) { | |
| 3318 | throw (Error) jjte000; | |
| 3319 | } | |
| 3320 | } | |
| 3321 | } finally { | |
| 3322 |
6
1. AdditiveExpression : negated conditional → SURVIVED 2. AdditiveExpression : removed conditional - replaced equality check with false → SURVIVED 3. AdditiveExpression : removed conditional - replaced equality check with false → SURVIVED 4. AdditiveExpression : removed conditional - replaced equality check with true → SURVIVED 5. AdditiveExpression : negated conditional → KILLED 6. AdditiveExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3323 |
4
1. AdditiveExpression : Substituted 1 with 0 → SURVIVED 2. AdditiveExpression : Substituted 1 with 0 → SURVIVED 3. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. AdditiveExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3324 | } | |
| 3325 | } | |
| 3326 | } | |
| 3327 | ||
| 3328 | final public void MultiplicativeExpression() throws ParseException { | |
| 3329 | /*@bgen(jjtree) MultiplicativeExpression */ | |
| 3330 |
2
1. MultiplicativeExpression : Substituted 51 with 52 → SURVIVED 2. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMULTIPLICATIVEEXPRESSION); |
| 3331 |
1
1. MultiplicativeExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3332 |
1
1. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3333 | try { | |
| 3334 |
1
1. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::UnaryExpression → KILLED |
UnaryExpression(); |
| 3335 | label_32:while (true) { | |
| 3336 |
9
1. MultiplicativeExpression : Substituted -1 with 0 → SURVIVED 2. MultiplicativeExpression : negated conditional → SURVIVED 3. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. MultiplicativeExpression : removed conditional - replaced equality check with false → SURVIVED 5. MultiplicativeExpression : removed conditional - replaced equality check with true → SURVIVED 6. MultiplicativeExpression : RemoveSwitch 1 mutation → SURVIVED 7. MultiplicativeExpression : RemoveSwitch 2 mutation → SURVIVED 8. MultiplicativeExpression : RemoveSwitch 0 mutation → KILLED 9. MultiplicativeExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3337 | case STAR: | |
| 3338 | case SLASH: | |
| 3339 | case REM: | |
| 3340 | ; | |
| 3341 | break; | |
| 3342 | default: | |
| 3343 | break label_32; | |
| 3344 | } | |
| 3345 |
9
1. MultiplicativeExpression : Substituted -1 with 0 → SURVIVED 2. MultiplicativeExpression : negated conditional → SURVIVED 3. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. MultiplicativeExpression : removed conditional - replaced equality check with false → SURVIVED 5. MultiplicativeExpression : removed conditional - replaced equality check with true → SURVIVED 6. MultiplicativeExpression : RemoveSwitch 0 mutation → SURVIVED 7. MultiplicativeExpression : RemoveSwitch 1 mutation → SURVIVED 8. MultiplicativeExpression : RemoveSwitch 2 mutation → SURVIVED 9. MultiplicativeExpression : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3346 | case STAR: | |
| 3347 |
2
1. MultiplicativeExpression : Substituted 103 with 104 → SURVIVED 2. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(STAR); |
| 3348 | break; | |
| 3349 | case SLASH: | |
| 3350 |
2
1. MultiplicativeExpression : Substituted 104 with 105 → NO_COVERAGE 2. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SLASH); |
| 3351 | break; | |
| 3352 | case REM: | |
| 3353 |
2
1. MultiplicativeExpression : Substituted 108 with 109 → NO_COVERAGE 2. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(REM); |
| 3354 | break; | |
| 3355 | default: | |
| 3356 |
2
1. MultiplicativeExpression : Substituted -1 with 0 → NO_COVERAGE 2. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3357 |
1
1. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3358 | } | |
| 3359 |
1
1. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::UnaryExpression → KILLED |
UnaryExpression(); |
| 3360 | } | |
| 3361 | } catch (Throwable jjte000) { | |
| 3362 |
3
1. MultiplicativeExpression : removed conditional - replaced equality check with true → SURVIVED 2. MultiplicativeExpression : negated conditional → KILLED 3. MultiplicativeExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3363 |
1
1. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3364 |
1
1. MultiplicativeExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3365 | } else { | |
| 3366 |
1
1. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3367 | } | |
| 3368 |
3
1. MultiplicativeExpression : negated conditional → KILLED 2. MultiplicativeExpression : removed conditional - replaced equality check with false → KILLED 3. MultiplicativeExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3369 | { | |
| 3370 | if (true) { | |
| 3371 | throw (RuntimeException) jjte000; | |
| 3372 | } | |
| 3373 | } | |
| 3374 | } | |
| 3375 |
3
1. MultiplicativeExpression : removed conditional - replaced equality check with false → SURVIVED 2. MultiplicativeExpression : negated conditional → KILLED 3. MultiplicativeExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3376 | { | |
| 3377 | if (true) { | |
| 3378 | throw (ParseException) jjte000; | |
| 3379 | } | |
| 3380 | } | |
| 3381 | } | |
| 3382 | { | |
| 3383 | if (true) { | |
| 3384 | throw (Error) jjte000; | |
| 3385 | } | |
| 3386 | } | |
| 3387 | } finally { | |
| 3388 |
6
1. MultiplicativeExpression : negated conditional → SURVIVED 2. MultiplicativeExpression : removed conditional - replaced equality check with false → SURVIVED 3. MultiplicativeExpression : removed conditional - replaced equality check with false → SURVIVED 4. MultiplicativeExpression : removed conditional - replaced equality check with true → SURVIVED 5. MultiplicativeExpression : negated conditional → KILLED 6. MultiplicativeExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3389 |
4
1. MultiplicativeExpression : Substituted 1 with 0 → SURVIVED 2. MultiplicativeExpression : Substituted 1 with 0 → SURVIVED 3. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MultiplicativeExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3390 | } | |
| 3391 | } | |
| 3392 | } | |
| 3393 | ||
| 3394 | final public void UnaryExpression() throws ParseException { | |
| 3395 | /*@bgen(jjtree) UnaryExpression */ | |
| 3396 |
2
1. UnaryExpression : Substituted 52 with 53 → SURVIVED 2. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTUNARYEXPRESSION); |
| 3397 |
1
1. UnaryExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3398 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3399 | try { | |
| 3400 |
94
1. UnaryExpression : removed conditional - replaced equality check with true → SURVIVED 2. UnaryExpression : RemoveSwitch 0 mutation → SURVIVED 3. UnaryExpression : RemoveSwitch 1 mutation → SURVIVED 4. UnaryExpression : RemoveSwitch 10 mutation → SURVIVED 5. UnaryExpression : RemoveSwitch 11 mutation → SURVIVED 6. UnaryExpression : RemoveSwitch 12 mutation → SURVIVED 7. UnaryExpression : RemoveSwitch 13 mutation → SURVIVED 8. UnaryExpression : RemoveSwitch 14 mutation → SURVIVED 9. UnaryExpression : RemoveSwitch 15 mutation → SURVIVED 10. UnaryExpression : RemoveSwitch 16 mutation → SURVIVED 11. UnaryExpression : RemoveSwitch 17 mutation → SURVIVED 12. UnaryExpression : RemoveSwitch 18 mutation → SURVIVED 13. UnaryExpression : RemoveSwitch 19 mutation → SURVIVED 14. UnaryExpression : RemoveSwitch 2 mutation → SURVIVED 15. UnaryExpression : RemoveSwitch 20 mutation → SURVIVED 16. UnaryExpression : RemoveSwitch 21 mutation → SURVIVED 17. UnaryExpression : RemoveSwitch 22 mutation → SURVIVED 18. UnaryExpression : RemoveSwitch 23 mutation → SURVIVED 19. UnaryExpression : RemoveSwitch 24 mutation → SURVIVED 20. UnaryExpression : RemoveSwitch 25 mutation → SURVIVED 21. UnaryExpression : RemoveSwitch 26 mutation → SURVIVED 22. UnaryExpression : RemoveSwitch 27 mutation → SURVIVED 23. UnaryExpression : RemoveSwitch 28 mutation → SURVIVED 24. UnaryExpression : RemoveSwitch 29 mutation → SURVIVED 25. UnaryExpression : RemoveSwitch 3 mutation → SURVIVED 26. UnaryExpression : RemoveSwitch 30 mutation → SURVIVED 27. UnaryExpression : RemoveSwitch 31 mutation → SURVIVED 28. UnaryExpression : RemoveSwitch 32 mutation → SURVIVED 29. UnaryExpression : RemoveSwitch 33 mutation → SURVIVED 30. UnaryExpression : RemoveSwitch 34 mutation → SURVIVED 31. UnaryExpression : RemoveSwitch 35 mutation → SURVIVED 32. UnaryExpression : RemoveSwitch 36 mutation → SURVIVED 33. UnaryExpression : RemoveSwitch 37 mutation → SURVIVED 34. UnaryExpression : RemoveSwitch 38 mutation → SURVIVED 35. UnaryExpression : RemoveSwitch 39 mutation → SURVIVED 36. UnaryExpression : RemoveSwitch 4 mutation → SURVIVED 37. UnaryExpression : RemoveSwitch 40 mutation → SURVIVED 38. UnaryExpression : RemoveSwitch 41 mutation → SURVIVED 39. UnaryExpression : RemoveSwitch 42 mutation → SURVIVED 40. UnaryExpression : RemoveSwitch 43 mutation → SURVIVED 41. UnaryExpression : RemoveSwitch 44 mutation → SURVIVED 42. UnaryExpression : RemoveSwitch 45 mutation → SURVIVED 43. UnaryExpression : RemoveSwitch 46 mutation → SURVIVED 44. UnaryExpression : RemoveSwitch 47 mutation → SURVIVED 45. UnaryExpression : RemoveSwitch 48 mutation → SURVIVED 46. UnaryExpression : RemoveSwitch 49 mutation → SURVIVED 47. UnaryExpression : RemoveSwitch 5 mutation → SURVIVED 48. UnaryExpression : RemoveSwitch 50 mutation → SURVIVED 49. UnaryExpression : RemoveSwitch 52 mutation → SURVIVED 50. UnaryExpression : RemoveSwitch 53 mutation → SURVIVED 51. UnaryExpression : RemoveSwitch 54 mutation → SURVIVED 52. UnaryExpression : RemoveSwitch 55 mutation → SURVIVED 53. UnaryExpression : RemoveSwitch 56 mutation → SURVIVED 54. UnaryExpression : RemoveSwitch 57 mutation → SURVIVED 55. UnaryExpression : RemoveSwitch 6 mutation → SURVIVED 56. UnaryExpression : RemoveSwitch 60 mutation → SURVIVED 57. UnaryExpression : RemoveSwitch 61 mutation → SURVIVED 58. UnaryExpression : RemoveSwitch 62 mutation → SURVIVED 59. UnaryExpression : RemoveSwitch 63 mutation → SURVIVED 60. UnaryExpression : RemoveSwitch 64 mutation → SURVIVED 61. UnaryExpression : RemoveSwitch 65 mutation → SURVIVED 62. UnaryExpression : RemoveSwitch 66 mutation → SURVIVED 63. UnaryExpression : RemoveSwitch 67 mutation → SURVIVED 64. UnaryExpression : RemoveSwitch 68 mutation → SURVIVED 65. UnaryExpression : RemoveSwitch 69 mutation → SURVIVED 66. UnaryExpression : RemoveSwitch 7 mutation → SURVIVED 67. UnaryExpression : RemoveSwitch 70 mutation → SURVIVED 68. UnaryExpression : RemoveSwitch 71 mutation → SURVIVED 69. UnaryExpression : RemoveSwitch 72 mutation → SURVIVED 70. UnaryExpression : RemoveSwitch 73 mutation → SURVIVED 71. UnaryExpression : RemoveSwitch 75 mutation → SURVIVED 72. UnaryExpression : RemoveSwitch 76 mutation → SURVIVED 73. UnaryExpression : RemoveSwitch 77 mutation → SURVIVED 74. UnaryExpression : RemoveSwitch 78 mutation → SURVIVED 75. UnaryExpression : RemoveSwitch 79 mutation → SURVIVED 76. UnaryExpression : RemoveSwitch 8 mutation → SURVIVED 77. UnaryExpression : RemoveSwitch 80 mutation → SURVIVED 78. UnaryExpression : RemoveSwitch 81 mutation → SURVIVED 79. UnaryExpression : RemoveSwitch 82 mutation → SURVIVED 80. UnaryExpression : RemoveSwitch 83 mutation → SURVIVED 81. UnaryExpression : RemoveSwitch 84 mutation → SURVIVED 82. UnaryExpression : RemoveSwitch 85 mutation → SURVIVED 83. UnaryExpression : RemoveSwitch 86 mutation → SURVIVED 84. UnaryExpression : RemoveSwitch 87 mutation → SURVIVED 85. UnaryExpression : RemoveSwitch 9 mutation → SURVIVED 86. UnaryExpression : Substituted -1 with 0 → KILLED 87. UnaryExpression : negated conditional → KILLED 88. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → KILLED 89. UnaryExpression : removed conditional - replaced equality check with false → KILLED 90. UnaryExpression : RemoveSwitch 51 mutation → KILLED 91. UnaryExpression : RemoveSwitch 58 mutation → KILLED 92. UnaryExpression : RemoveSwitch 59 mutation → KILLED 93. UnaryExpression : RemoveSwitch 74 mutation → KILLED 94. UnaryExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3401 | case PLUS: | |
| 3402 | case MINUS: | |
| 3403 |
8
1. UnaryExpression : Substituted -1 with 0 → NO_COVERAGE 2. UnaryExpression : negated conditional → NO_COVERAGE 3. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. UnaryExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. UnaryExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. UnaryExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. UnaryExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. UnaryExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3404 | case PLUS: | |
| 3405 |
2
1. UnaryExpression : Substituted 101 with 102 → NO_COVERAGE 2. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(PLUS); |
| 3406 | break; | |
| 3407 | case MINUS: | |
| 3408 |
2
1. UnaryExpression : Substituted 102 with 103 → NO_COVERAGE 2. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(MINUS); |
| 3409 | break; | |
| 3410 | default: | |
| 3411 |
2
1. UnaryExpression : Substituted -1 with 0 → NO_COVERAGE 2. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3412 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3413 | } | |
| 3414 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::UnaryExpression → NO_COVERAGE |
UnaryExpression(); |
| 3415 | break; | |
| 3416 | case INCR: | |
| 3417 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PreIncrementExpression → NO_COVERAGE |
PreIncrementExpression(); |
| 3418 | break; | |
| 3419 | case DECR: | |
| 3420 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PreDecrementExpression → NO_COVERAGE |
PreDecrementExpression(); |
| 3421 | break; | |
| 3422 | case BOOLEAN: | |
| 3423 | case BYTE: | |
| 3424 | case CHAR: | |
| 3425 | case DOUBLE: | |
| 3426 | case FALSE: | |
| 3427 | case FLOAT: | |
| 3428 | case INT: | |
| 3429 | case LONG: | |
| 3430 | case NEW: | |
| 3431 | case NULL: | |
| 3432 | case SHORT: | |
| 3433 | case SUPER: | |
| 3434 | case THIS: | |
| 3435 | case TRUE: | |
| 3436 | case VOID: | |
| 3437 | case INTEGER_LITERAL: | |
| 3438 | case FLOATING_POINT_LITERAL: | |
| 3439 | case CHARACTER_LITERAL: | |
| 3440 | case STRING_LITERAL: | |
| 3441 | case IDENTIFIER: | |
| 3442 | case LPAREN: | |
| 3443 | case BANG: | |
| 3444 | case TILDE: | |
| 3445 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::UnaryExpressionNotPlusMinus → KILLED |
UnaryExpressionNotPlusMinus(); |
| 3446 | break; | |
| 3447 | default: | |
| 3448 |
2
1. UnaryExpression : Substituted -1 with 0 → SURVIVED 2. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 3449 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 3450 | } | |
| 3451 | } catch (Throwable jjte000) { | |
| 3452 |
3
1. UnaryExpression : removed conditional - replaced equality check with true → SURVIVED 2. UnaryExpression : negated conditional → KILLED 3. UnaryExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3453 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3454 |
1
1. UnaryExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3455 | } else { | |
| 3456 |
1
1. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3457 | } | |
| 3458 |
3
1. UnaryExpression : negated conditional → KILLED 2. UnaryExpression : removed conditional - replaced equality check with false → KILLED 3. UnaryExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3459 | { | |
| 3460 | if (true) { | |
| 3461 | throw (RuntimeException) jjte000; | |
| 3462 | } | |
| 3463 | } | |
| 3464 | } | |
| 3465 |
3
1. UnaryExpression : removed conditional - replaced equality check with false → SURVIVED 2. UnaryExpression : negated conditional → KILLED 3. UnaryExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3466 | { | |
| 3467 | if (true) { | |
| 3468 | throw (ParseException) jjte000; | |
| 3469 | } | |
| 3470 | } | |
| 3471 | } | |
| 3472 | { | |
| 3473 | if (true) { | |
| 3474 | throw (Error) jjte000; | |
| 3475 | } | |
| 3476 | } | |
| 3477 | } finally { | |
| 3478 |
6
1. UnaryExpression : negated conditional → SURVIVED 2. UnaryExpression : removed conditional - replaced equality check with false → SURVIVED 3. UnaryExpression : removed conditional - replaced equality check with false → SURVIVED 4. UnaryExpression : removed conditional - replaced equality check with true → SURVIVED 5. UnaryExpression : negated conditional → KILLED 6. UnaryExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3479 |
4
1. UnaryExpression : Substituted 1 with 0 → SURVIVED 2. UnaryExpression : Substituted 1 with 0 → SURVIVED 3. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. UnaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3480 | } | |
| 3481 | } | |
| 3482 | } | |
| 3483 | ||
| 3484 | final public void PreIncrementExpression() throws ParseException { | |
| 3485 | /*@bgen(jjtree) PreIncrementExpression */ | |
| 3486 |
2
1. PreIncrementExpression : Substituted 53 with 54 → SURVIVED 2. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTPREINCREMENTEXPRESSION); |
| 3487 |
1
1. PreIncrementExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3488 |
1
1. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3489 | try { | |
| 3490 |
2
1. PreIncrementExpression : Substituted 99 with 100 → SURVIVED 2. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(INCR); |
| 3491 |
1
1. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimaryExpression → SURVIVED |
PrimaryExpression(); |
| 3492 | } catch (Throwable jjte000) { | |
| 3493 |
3
1. PreIncrementExpression : removed conditional - replaced equality check with true → SURVIVED 2. PreIncrementExpression : negated conditional → KILLED 3. PreIncrementExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3494 |
1
1. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3495 |
1
1. PreIncrementExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3496 | } else { | |
| 3497 |
1
1. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3498 | } | |
| 3499 |
3
1. PreIncrementExpression : removed conditional - replaced equality check with false → SURVIVED 2. PreIncrementExpression : negated conditional → KILLED 3. PreIncrementExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3500 | { | |
| 3501 | if (true) { | |
| 3502 | throw (RuntimeException) jjte000; | |
| 3503 | } | |
| 3504 | } | |
| 3505 | } | |
| 3506 |
3
1. PreIncrementExpression : removed conditional - replaced equality check with false → SURVIVED 2. PreIncrementExpression : negated conditional → KILLED 3. PreIncrementExpression : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3507 | { | |
| 3508 | if (true) { | |
| 3509 | throw (ParseException) jjte000; | |
| 3510 | } | |
| 3511 | } | |
| 3512 | } | |
| 3513 | { | |
| 3514 | if (true) { | |
| 3515 | throw (Error) jjte000; | |
| 3516 | } | |
| 3517 | } | |
| 3518 | } finally { | |
| 3519 |
6
1. PreIncrementExpression : negated conditional → SURVIVED 2. PreIncrementExpression : removed conditional - replaced equality check with false → SURVIVED 3. PreIncrementExpression : removed conditional - replaced equality check with false → SURVIVED 4. PreIncrementExpression : removed conditional - replaced equality check with true → SURVIVED 5. PreIncrementExpression : negated conditional → KILLED 6. PreIncrementExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3520 |
4
1. PreIncrementExpression : Substituted 1 with 0 → SURVIVED 2. PreIncrementExpression : Substituted 1 with 0 → SURVIVED 3. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. PreIncrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3521 | } | |
| 3522 | } | |
| 3523 | } | |
| 3524 | ||
| 3525 | final public void PreDecrementExpression() throws ParseException { | |
| 3526 | /*@bgen(jjtree) PreDecrementExpression */ | |
| 3527 |
2
1. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. PreDecrementExpression : Substituted 54 with 55 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTPREDECREMENTEXPRESSION); |
| 3528 |
1
1. PreDecrementExpression : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 3529 |
1
1. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 3530 | try { | |
| 3531 |
2
1. PreDecrementExpression : Substituted 100 with 101 → NO_COVERAGE 2. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DECR); |
| 3532 |
1
1. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimaryExpression → NO_COVERAGE |
PrimaryExpression(); |
| 3533 | } catch (Throwable jjte000) { | |
| 3534 |
3
1. PreDecrementExpression : negated conditional → NO_COVERAGE 2. PreDecrementExpression : removed conditional - replaced equality check with false → NO_COVERAGE 3. PreDecrementExpression : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 3535 |
1
1. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 3536 |
1
1. PreDecrementExpression : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 3537 | } else { | |
| 3538 |
1
1. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3539 | } | |
| 3540 |
3
1. PreDecrementExpression : negated conditional → NO_COVERAGE 2. PreDecrementExpression : removed conditional - replaced equality check with false → NO_COVERAGE 3. PreDecrementExpression : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 3541 | { | |
| 3542 | if (true) { | |
| 3543 | throw (RuntimeException) jjte000; | |
| 3544 | } | |
| 3545 | } | |
| 3546 | } | |
| 3547 |
3
1. PreDecrementExpression : negated conditional → NO_COVERAGE 2. PreDecrementExpression : removed conditional - replaced equality check with false → NO_COVERAGE 3. PreDecrementExpression : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 3548 | { | |
| 3549 | if (true) { | |
| 3550 | throw (ParseException) jjte000; | |
| 3551 | } | |
| 3552 | } | |
| 3553 | } | |
| 3554 | { | |
| 3555 | if (true) { | |
| 3556 | throw (Error) jjte000; | |
| 3557 | } | |
| 3558 | } | |
| 3559 | } finally { | |
| 3560 |
6
1. PreDecrementExpression : negated conditional → NO_COVERAGE 2. PreDecrementExpression : negated conditional → NO_COVERAGE 3. PreDecrementExpression : removed conditional - replaced equality check with false → NO_COVERAGE 4. PreDecrementExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. PreDecrementExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. PreDecrementExpression : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 3561 |
4
1. PreDecrementExpression : Substituted 1 with 0 → NO_COVERAGE 2. PreDecrementExpression : Substituted 1 with 0 → NO_COVERAGE 3. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. PreDecrementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 3562 | } | |
| 3563 | } | |
| 3564 | } | |
| 3565 | ||
| 3566 | final public void UnaryExpressionNotPlusMinus() throws ParseException { | |
| 3567 | /*@bgen(jjtree) UnaryExpressionNotPlusMinus */ | |
| 3568 |
2
1. UnaryExpressionNotPlusMinus : Substituted 55 with 56 → SURVIVED 2. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, |
| 3569 | JJTUNARYEXPRESSIONNOTPLUSMINUS); | |
| 3570 |
1
1. UnaryExpressionNotPlusMinus : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3571 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3572 | try { | |
| 3573 |
8
1. UnaryExpressionNotPlusMinus : Substituted -1 with 0 → SURVIVED 2. UnaryExpressionNotPlusMinus : negated conditional → SURVIVED 3. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 5. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → SURVIVED 6. UnaryExpressionNotPlusMinus : RemoveSwitch 1 mutation → SURVIVED 7. UnaryExpressionNotPlusMinus : RemoveSwitch 0 mutation → KILLED 8. UnaryExpressionNotPlusMinus : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3574 | case BANG: | |
| 3575 | case TILDE: | |
| 3576 |
8
1. UnaryExpressionNotPlusMinus : Substituted -1 with 0 → SURVIVED 2. UnaryExpressionNotPlusMinus : negated conditional → SURVIVED 3. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 5. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → SURVIVED 6. UnaryExpressionNotPlusMinus : RemoveSwitch 1 mutation → SURVIVED 7. UnaryExpressionNotPlusMinus : RemoveSwitch 0 mutation → KILLED 8. UnaryExpressionNotPlusMinus : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3577 | case TILDE: | |
| 3578 |
2
1. UnaryExpressionNotPlusMinus : Substituted 90 with 91 → NO_COVERAGE 2. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(TILDE); |
| 3579 | break; | |
| 3580 | case BANG: | |
| 3581 |
2
1. UnaryExpressionNotPlusMinus : Substituted 89 with 90 → KILLED 2. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(BANG); |
| 3582 | break; | |
| 3583 | default: | |
| 3584 |
2
1. UnaryExpressionNotPlusMinus : Substituted -1 with 0 → NO_COVERAGE 2. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3585 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3586 | } | |
| 3587 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::UnaryExpression → SURVIVED |
UnaryExpression(); |
| 3588 | break; | |
| 3589 | default: | |
| 3590 |
5
1. UnaryExpressionNotPlusMinus : Substituted 2147483647 with -2147483648 → SURVIVED 2. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_20 → SURVIVED 3. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 4. UnaryExpressionNotPlusMinus : negated conditional → KILLED 5. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → KILLED |
if (jj_2_20(2147483647)) { |
| 3591 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::CastExpression → NO_COVERAGE |
CastExpression(); |
| 3592 | } else { | |
| 3593 |
69
1. UnaryExpressionNotPlusMinus : Substituted -1 with 0 → SURVIVED 2. UnaryExpressionNotPlusMinus : negated conditional → SURVIVED 3. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 5. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → SURVIVED 6. UnaryExpressionNotPlusMinus : RemoveSwitch 0 mutation → SURVIVED 7. UnaryExpressionNotPlusMinus : RemoveSwitch 1 mutation → SURVIVED 8. UnaryExpressionNotPlusMinus : RemoveSwitch 10 mutation → SURVIVED 9. UnaryExpressionNotPlusMinus : RemoveSwitch 11 mutation → SURVIVED 10. UnaryExpressionNotPlusMinus : RemoveSwitch 12 mutation → SURVIVED 11. UnaryExpressionNotPlusMinus : RemoveSwitch 13 mutation → SURVIVED 12. UnaryExpressionNotPlusMinus : RemoveSwitch 14 mutation → SURVIVED 13. UnaryExpressionNotPlusMinus : RemoveSwitch 15 mutation → SURVIVED 14. UnaryExpressionNotPlusMinus : RemoveSwitch 16 mutation → SURVIVED 15. UnaryExpressionNotPlusMinus : RemoveSwitch 17 mutation → SURVIVED 16. UnaryExpressionNotPlusMinus : RemoveSwitch 18 mutation → SURVIVED 17. UnaryExpressionNotPlusMinus : RemoveSwitch 19 mutation → SURVIVED 18. UnaryExpressionNotPlusMinus : RemoveSwitch 2 mutation → SURVIVED 19. UnaryExpressionNotPlusMinus : RemoveSwitch 20 mutation → SURVIVED 20. UnaryExpressionNotPlusMinus : RemoveSwitch 21 mutation → SURVIVED 21. UnaryExpressionNotPlusMinus : RemoveSwitch 22 mutation → SURVIVED 22. UnaryExpressionNotPlusMinus : RemoveSwitch 23 mutation → SURVIVED 23. UnaryExpressionNotPlusMinus : RemoveSwitch 24 mutation → SURVIVED 24. UnaryExpressionNotPlusMinus : RemoveSwitch 25 mutation → SURVIVED 25. UnaryExpressionNotPlusMinus : RemoveSwitch 26 mutation → SURVIVED 26. UnaryExpressionNotPlusMinus : RemoveSwitch 27 mutation → SURVIVED 27. UnaryExpressionNotPlusMinus : RemoveSwitch 28 mutation → SURVIVED 28. UnaryExpressionNotPlusMinus : RemoveSwitch 29 mutation → SURVIVED 29. UnaryExpressionNotPlusMinus : RemoveSwitch 3 mutation → SURVIVED 30. UnaryExpressionNotPlusMinus : RemoveSwitch 30 mutation → SURVIVED 31. UnaryExpressionNotPlusMinus : RemoveSwitch 31 mutation → SURVIVED 32. UnaryExpressionNotPlusMinus : RemoveSwitch 32 mutation → SURVIVED 33. UnaryExpressionNotPlusMinus : RemoveSwitch 33 mutation → SURVIVED 34. UnaryExpressionNotPlusMinus : RemoveSwitch 34 mutation → SURVIVED 35. UnaryExpressionNotPlusMinus : RemoveSwitch 35 mutation → SURVIVED 36. UnaryExpressionNotPlusMinus : RemoveSwitch 36 mutation → SURVIVED 37. UnaryExpressionNotPlusMinus : RemoveSwitch 37 mutation → SURVIVED 38. UnaryExpressionNotPlusMinus : RemoveSwitch 38 mutation → SURVIVED 39. UnaryExpressionNotPlusMinus : RemoveSwitch 39 mutation → SURVIVED 40. UnaryExpressionNotPlusMinus : RemoveSwitch 4 mutation → SURVIVED 41. UnaryExpressionNotPlusMinus : RemoveSwitch 40 mutation → SURVIVED 42. UnaryExpressionNotPlusMinus : RemoveSwitch 41 mutation → SURVIVED 43. UnaryExpressionNotPlusMinus : RemoveSwitch 42 mutation → SURVIVED 44. UnaryExpressionNotPlusMinus : RemoveSwitch 43 mutation → SURVIVED 45. UnaryExpressionNotPlusMinus : RemoveSwitch 44 mutation → SURVIVED 46. UnaryExpressionNotPlusMinus : RemoveSwitch 45 mutation → SURVIVED 47. UnaryExpressionNotPlusMinus : RemoveSwitch 46 mutation → SURVIVED 48. UnaryExpressionNotPlusMinus : RemoveSwitch 47 mutation → SURVIVED 49. UnaryExpressionNotPlusMinus : RemoveSwitch 48 mutation → SURVIVED 50. UnaryExpressionNotPlusMinus : RemoveSwitch 49 mutation → SURVIVED 51. UnaryExpressionNotPlusMinus : RemoveSwitch 5 mutation → SURVIVED 52. UnaryExpressionNotPlusMinus : RemoveSwitch 50 mutation → SURVIVED 53. UnaryExpressionNotPlusMinus : RemoveSwitch 52 mutation → SURVIVED 54. UnaryExpressionNotPlusMinus : RemoveSwitch 53 mutation → SURVIVED 55. UnaryExpressionNotPlusMinus : RemoveSwitch 54 mutation → SURVIVED 56. UnaryExpressionNotPlusMinus : RemoveSwitch 55 mutation → SURVIVED 57. UnaryExpressionNotPlusMinus : RemoveSwitch 56 mutation → SURVIVED 58. UnaryExpressionNotPlusMinus : RemoveSwitch 57 mutation → SURVIVED 59. UnaryExpressionNotPlusMinus : RemoveSwitch 6 mutation → SURVIVED 60. UnaryExpressionNotPlusMinus : RemoveSwitch 60 mutation → SURVIVED 61. UnaryExpressionNotPlusMinus : RemoveSwitch 61 mutation → SURVIVED 62. UnaryExpressionNotPlusMinus : RemoveSwitch 62 mutation → SURVIVED 63. UnaryExpressionNotPlusMinus : RemoveSwitch 7 mutation → SURVIVED 64. UnaryExpressionNotPlusMinus : RemoveSwitch 8 mutation → SURVIVED 65. UnaryExpressionNotPlusMinus : RemoveSwitch 9 mutation → SURVIVED 66. UnaryExpressionNotPlusMinus : RemoveSwitch 51 mutation → KILLED 67. UnaryExpressionNotPlusMinus : RemoveSwitch 58 mutation → KILLED 68. UnaryExpressionNotPlusMinus : RemoveSwitch 59 mutation → KILLED 69. UnaryExpressionNotPlusMinus : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3594 | case BOOLEAN: | |
| 3595 | case BYTE: | |
| 3596 | case CHAR: | |
| 3597 | case DOUBLE: | |
| 3598 | case FALSE: | |
| 3599 | case FLOAT: | |
| 3600 | case INT: | |
| 3601 | case LONG: | |
| 3602 | case NEW: | |
| 3603 | case NULL: | |
| 3604 | case SHORT: | |
| 3605 | case SUPER: | |
| 3606 | case THIS: | |
| 3607 | case TRUE: | |
| 3608 | case VOID: | |
| 3609 | case INTEGER_LITERAL: | |
| 3610 | case FLOATING_POINT_LITERAL: | |
| 3611 | case CHARACTER_LITERAL: | |
| 3612 | case STRING_LITERAL: | |
| 3613 | case IDENTIFIER: | |
| 3614 | case LPAREN: | |
| 3615 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PostfixExpression → KILLED |
PostfixExpression(); |
| 3616 | break; | |
| 3617 | default: | |
| 3618 |
2
1. UnaryExpressionNotPlusMinus : Substituted -1 with 0 → NO_COVERAGE 2. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3619 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3620 | } | |
| 3621 | } | |
| 3622 | } | |
| 3623 | } catch (Throwable jjte000) { | |
| 3624 |
3
1. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → SURVIVED 2. UnaryExpressionNotPlusMinus : negated conditional → KILLED 3. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3625 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3626 |
1
1. UnaryExpressionNotPlusMinus : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3627 | } else { | |
| 3628 |
1
1. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3629 | } | |
| 3630 |
3
1. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 2. UnaryExpressionNotPlusMinus : negated conditional → KILLED 3. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3631 | { | |
| 3632 | if (true) { | |
| 3633 | throw (RuntimeException) jjte000; | |
| 3634 | } | |
| 3635 | } | |
| 3636 | } | |
| 3637 |
3
1. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 2. UnaryExpressionNotPlusMinus : negated conditional → KILLED 3. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3638 | { | |
| 3639 | if (true) { | |
| 3640 | throw (ParseException) jjte000; | |
| 3641 | } | |
| 3642 | } | |
| 3643 | } | |
| 3644 | { | |
| 3645 | if (true) { | |
| 3646 | throw (Error) jjte000; | |
| 3647 | } | |
| 3648 | } | |
| 3649 | } finally { | |
| 3650 |
6
1. UnaryExpressionNotPlusMinus : negated conditional → SURVIVED 2. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 3. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with false → SURVIVED 4. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → SURVIVED 5. UnaryExpressionNotPlusMinus : negated conditional → KILLED 6. UnaryExpressionNotPlusMinus : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3651 |
4
1. UnaryExpressionNotPlusMinus : Substituted 1 with 0 → SURVIVED 2. UnaryExpressionNotPlusMinus : Substituted 1 with 0 → SURVIVED 3. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. UnaryExpressionNotPlusMinus : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3652 | } | |
| 3653 | } | |
| 3654 | } | |
| 3655 | ||
| 3656 | // This production is to determine lookahead only. The LOOKAHEAD specifications | |
| 3657 | // below are not used, but they are there just to indicate that we know about | |
| 3658 | // this. | |
| 3659 | final public void CastLookahead() throws ParseException { | |
| 3660 | /*@bgen(jjtree) CastLookahead */ | |
| 3661 |
2
1. CastLookahead : Substituted 56 with 57 → SURVIVED 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCASTLOOKAHEAD); |
| 3662 |
1
1. CastLookahead : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3663 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3664 | try { | |
| 3665 |
5
1. CastLookahead : Substituted 2 with 3 → SURVIVED 2. CastLookahead : negated conditional → SURVIVED 3. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_21 → SURVIVED 4. CastLookahead : removed conditional - replaced equality check with false → SURVIVED 5. CastLookahead : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_21(2)) { |
| 3666 |
2
1. CastLookahead : Substituted 77 with 78 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LPAREN); |
| 3667 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimitiveType → NO_COVERAGE |
PrimitiveType(); |
| 3668 |
5
1. CastLookahead : Substituted 2147483647 with -2147483648 → SURVIVED 2. CastLookahead : negated conditional → SURVIVED 3. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_22 → SURVIVED 4. CastLookahead : removed conditional - replaced equality check with false → SURVIVED 5. CastLookahead : removed conditional - replaced equality check with true → SURVIVED |
} else if (jj_2_22(2147483647)) { |
| 3669 |
2
1. CastLookahead : Substituted 77 with 78 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LPAREN); |
| 3670 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → NO_COVERAGE |
Type(); |
| 3671 |
2
1. CastLookahead : Substituted 81 with 82 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 3672 |
2
1. CastLookahead : Substituted 82 with 83 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 3673 | } else { | |
| 3674 |
7
1. CastLookahead : Substituted -1 with 0 → SURVIVED 2. CastLookahead : negated conditional → SURVIVED 3. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. CastLookahead : removed conditional - replaced equality check with false → SURVIVED 5. CastLookahead : removed conditional - replaced equality check with true → SURVIVED 6. CastLookahead : RemoveSwitch 0 mutation → SURVIVED 7. CastLookahead : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3675 | case LPAREN: | |
| 3676 |
2
1. CastLookahead : Substituted 77 with 78 → SURVIVED 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 3677 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → SURVIVED |
Type(); |
| 3678 |
2
1. CastLookahead : Substituted 78 with 79 → SURVIVED 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 3679 |
20
1. CastLookahead : Substituted -1 with 0 → SURVIVED 2. CastLookahead : negated conditional → SURVIVED 3. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. CastLookahead : removed conditional - replaced equality check with false → SURVIVED 5. CastLookahead : removed conditional - replaced equality check with true → SURVIVED 6. CastLookahead : RemoveSwitch 0 mutation → SURVIVED 7. CastLookahead : RemoveSwitch 1 mutation → SURVIVED 8. CastLookahead : RemoveSwitch 10 mutation → SURVIVED 9. CastLookahead : RemoveSwitch 11 mutation → SURVIVED 10. CastLookahead : RemoveSwitch 12 mutation → SURVIVED 11. CastLookahead : RemoveSwitch 13 mutation → SURVIVED 12. CastLookahead : RemoveSwitch 2 mutation → SURVIVED 13. CastLookahead : RemoveSwitch 3 mutation → SURVIVED 14. CastLookahead : RemoveSwitch 4 mutation → SURVIVED 15. CastLookahead : RemoveSwitch 5 mutation → SURVIVED 16. CastLookahead : RemoveSwitch 6 mutation → SURVIVED 17. CastLookahead : RemoveSwitch 7 mutation → SURVIVED 18. CastLookahead : RemoveSwitch 8 mutation → SURVIVED 19. CastLookahead : RemoveSwitch 9 mutation → SURVIVED 20. CastLookahead : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3680 | case TILDE: | |
| 3681 |
2
1. CastLookahead : Substituted 90 with 91 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(TILDE); |
| 3682 | break; | |
| 3683 | case BANG: | |
| 3684 |
2
1. CastLookahead : Substituted 89 with 90 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(BANG); |
| 3685 | break; | |
| 3686 | case LPAREN: | |
| 3687 |
2
1. CastLookahead : Substituted 77 with 78 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LPAREN); |
| 3688 | break; | |
| 3689 | case IDENTIFIER: | |
| 3690 |
2
1. CastLookahead : Substituted 74 with 75 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 3691 | break; | |
| 3692 | case THIS: | |
| 3693 |
2
1. CastLookahead : Substituted 57 with 58 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(THIS); |
| 3694 | break; | |
| 3695 | case SUPER: | |
| 3696 |
2
1. CastLookahead : Substituted 54 with 55 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SUPER); |
| 3697 | break; | |
| 3698 | case NEW: | |
| 3699 |
2
1. CastLookahead : Substituted 44 with 45 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(NEW); |
| 3700 | break; | |
| 3701 | case FALSE: | |
| 3702 | case NULL: | |
| 3703 | case TRUE: | |
| 3704 | case INTEGER_LITERAL: | |
| 3705 | case FLOATING_POINT_LITERAL: | |
| 3706 | case CHARACTER_LITERAL: | |
| 3707 | case STRING_LITERAL: | |
| 3708 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Literal → NO_COVERAGE |
Literal(); |
| 3709 | break; | |
| 3710 | default: | |
| 3711 |
2
1. CastLookahead : Substituted -1 with 0 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3712 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3713 | } | |
| 3714 | break; | |
| 3715 | default: | |
| 3716 |
2
1. CastLookahead : Substituted -1 with 0 → NO_COVERAGE 2. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3717 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3718 | } | |
| 3719 | } | |
| 3720 | } catch (Throwable jjte000) { | |
| 3721 |
3
1. CastLookahead : removed conditional - replaced equality check with true → SURVIVED 2. CastLookahead : negated conditional → KILLED 3. CastLookahead : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3722 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3723 |
1
1. CastLookahead : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3724 | } else { | |
| 3725 |
1
1. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3726 | } | |
| 3727 |
3
1. CastLookahead : negated conditional → KILLED 2. CastLookahead : removed conditional - replaced equality check with false → KILLED 3. CastLookahead : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3728 | { | |
| 3729 | if (true) { | |
| 3730 | throw (RuntimeException) jjte000; | |
| 3731 | } | |
| 3732 | } | |
| 3733 | } | |
| 3734 |
3
1. CastLookahead : removed conditional - replaced equality check with false → SURVIVED 2. CastLookahead : negated conditional → KILLED 3. CastLookahead : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 3735 | { | |
| 3736 | if (true) { | |
| 3737 | throw (ParseException) jjte000; | |
| 3738 | } | |
| 3739 | } | |
| 3740 | } | |
| 3741 | { | |
| 3742 | if (true) { | |
| 3743 | throw (Error) jjte000; | |
| 3744 | } | |
| 3745 | } | |
| 3746 | } finally { | |
| 3747 |
6
1. CastLookahead : negated conditional → SURVIVED 2. CastLookahead : removed conditional - replaced equality check with false → SURVIVED 3. CastLookahead : removed conditional - replaced equality check with false → SURVIVED 4. CastLookahead : removed conditional - replaced equality check with true → SURVIVED 5. CastLookahead : negated conditional → KILLED 6. CastLookahead : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3748 |
4
1. CastLookahead : Substituted 1 with 0 → SURVIVED 2. CastLookahead : Substituted 1 with 0 → SURVIVED 3. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. CastLookahead : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3749 | } | |
| 3750 | } | |
| 3751 | } | |
| 3752 | ||
| 3753 | final public void PostfixExpression() throws ParseException { | |
| 3754 | /*@bgen(jjtree) PostfixExpression */ | |
| 3755 |
2
1. PostfixExpression : Substituted 57 with 58 → SURVIVED 2. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTPOSTFIXEXPRESSION); |
| 3756 |
1
1. PostfixExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3757 |
1
1. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3758 | try { | |
| 3759 |
1
1. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimaryExpression → KILLED |
PrimaryExpression(); |
| 3760 |
8
1. PostfixExpression : Substituted -1 with 0 → SURVIVED 2. PostfixExpression : negated conditional → SURVIVED 3. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. PostfixExpression : removed conditional - replaced equality check with false → SURVIVED 5. PostfixExpression : removed conditional - replaced equality check with true → SURVIVED 6. PostfixExpression : RemoveSwitch 0 mutation → SURVIVED 7. PostfixExpression : RemoveSwitch 1 mutation → SURVIVED 8. PostfixExpression : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3761 | case INCR: | |
| 3762 | case DECR: | |
| 3763 |
8
1. PostfixExpression : Substituted -1 with 0 → NO_COVERAGE 2. PostfixExpression : negated conditional → NO_COVERAGE 3. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. PostfixExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. PostfixExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. PostfixExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. PostfixExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. PostfixExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3764 | case INCR: | |
| 3765 |
2
1. PostfixExpression : Substituted 99 with 100 → NO_COVERAGE 2. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(INCR); |
| 3766 | break; | |
| 3767 | case DECR: | |
| 3768 |
2
1. PostfixExpression : Substituted 100 with 101 → NO_COVERAGE 2. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DECR); |
| 3769 | break; | |
| 3770 | default: | |
| 3771 |
2
1. PostfixExpression : Substituted -1 with 0 → NO_COVERAGE 2. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 3772 |
1
1. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 3773 | } | |
| 3774 | break; | |
| 3775 | default: | |
| 3776 | ; | |
| 3777 | } | |
| 3778 | } catch (Throwable jjte000) { | |
| 3779 |
3
1. PostfixExpression : removed conditional - replaced equality check with true → SURVIVED 2. PostfixExpression : negated conditional → KILLED 3. PostfixExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3780 |
1
1. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3781 |
1
1. PostfixExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3782 | } else { | |
| 3783 |
1
1. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3784 | } | |
| 3785 |
3
1. PostfixExpression : removed conditional - replaced equality check with true → SURVIVED 2. PostfixExpression : negated conditional → KILLED 3. PostfixExpression : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3786 | { | |
| 3787 | if (true) { | |
| 3788 | throw (RuntimeException) jjte000; | |
| 3789 | } | |
| 3790 | } | |
| 3791 | } | |
| 3792 |
3
1. PostfixExpression : negated conditional → SURVIVED 2. PostfixExpression : removed conditional - replaced equality check with false → SURVIVED 3. PostfixExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 3793 | { | |
| 3794 | if (true) { | |
| 3795 | throw (ParseException) jjte000; | |
| 3796 | } | |
| 3797 | } | |
| 3798 | } | |
| 3799 | { | |
| 3800 | if (true) { | |
| 3801 | throw (Error) jjte000; | |
| 3802 | } | |
| 3803 | } | |
| 3804 | } finally { | |
| 3805 |
6
1. PostfixExpression : negated conditional → SURVIVED 2. PostfixExpression : removed conditional - replaced equality check with false → SURVIVED 3. PostfixExpression : removed conditional - replaced equality check with false → SURVIVED 4. PostfixExpression : removed conditional - replaced equality check with true → SURVIVED 5. PostfixExpression : negated conditional → KILLED 6. PostfixExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3806 |
4
1. PostfixExpression : Substituted 1 with 0 → SURVIVED 2. PostfixExpression : Substituted 1 with 0 → SURVIVED 3. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. PostfixExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3807 | } | |
| 3808 | } | |
| 3809 | } | |
| 3810 | ||
| 3811 | final public void CastExpression() throws ParseException { | |
| 3812 | /*@bgen(jjtree) CastExpression */ | |
| 3813 |
2
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. CastExpression : Substituted 58 with 59 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCASTEXPRESSION); |
| 3814 |
1
1. CastExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3815 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3816 | try { | |
| 3817 |
5
1. CastExpression : Substituted 2147483647 with -2147483648 → SURVIVED 2. CastExpression : negated conditional → SURVIVED 3. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_23 → SURVIVED 4. CastExpression : removed conditional - replaced equality check with false → SURVIVED 5. CastExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_23(2147483647)) { |
| 3818 |
2
1. CastExpression : Substituted 77 with 78 → NO_COVERAGE 2. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LPAREN); |
| 3819 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → NO_COVERAGE |
Type(); |
| 3820 |
2
1. CastExpression : Substituted 78 with 79 → NO_COVERAGE 2. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 3821 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::UnaryExpression → NO_COVERAGE |
UnaryExpression(); |
| 3822 | } else { | |
| 3823 |
7
1. CastExpression : Substituted -1 with 0 → SURVIVED 2. CastExpression : negated conditional → SURVIVED 3. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. CastExpression : removed conditional - replaced equality check with false → SURVIVED 5. CastExpression : removed conditional - replaced equality check with true → SURVIVED 6. CastExpression : RemoveSwitch 0 mutation → SURVIVED 7. CastExpression : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3824 | case LPAREN: | |
| 3825 |
2
1. CastExpression : Substituted 77 with 78 → NO_COVERAGE 2. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LPAREN); |
| 3826 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → NO_COVERAGE |
Type(); |
| 3827 |
2
1. CastExpression : Substituted 78 with 79 → NO_COVERAGE 2. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 3828 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::UnaryExpressionNotPlusMinus → NO_COVERAGE |
UnaryExpressionNotPlusMinus(); |
| 3829 | break; | |
| 3830 | default: | |
| 3831 |
2
1. CastExpression : Substituted -1 with 0 → SURVIVED 2. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 3832 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 3833 | } | |
| 3834 | } | |
| 3835 | } catch (Throwable jjte000) { | |
| 3836 |
3
1. CastExpression : removed conditional - replaced equality check with true → SURVIVED 2. CastExpression : negated conditional → KILLED 3. CastExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3837 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3838 |
1
1. CastExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3839 | } else { | |
| 3840 |
1
1. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3841 | } | |
| 3842 |
3
1. CastExpression : negated conditional → SURVIVED 2. CastExpression : removed conditional - replaced equality check with false → SURVIVED 3. CastExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 3843 | { | |
| 3844 | if (true) { | |
| 3845 | throw (RuntimeException) jjte000; | |
| 3846 | } | |
| 3847 | } | |
| 3848 | } | |
| 3849 |
3
1. CastExpression : negated conditional → SURVIVED 2. CastExpression : removed conditional - replaced equality check with false → SURVIVED 3. CastExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 3850 | { | |
| 3851 | if (true) { | |
| 3852 | throw (ParseException) jjte000; | |
| 3853 | } | |
| 3854 | } | |
| 3855 | } | |
| 3856 | { | |
| 3857 | if (true) { | |
| 3858 | throw (Error) jjte000; | |
| 3859 | } | |
| 3860 | } | |
| 3861 | } finally { | |
| 3862 |
6
1. CastExpression : negated conditional → SURVIVED 2. CastExpression : removed conditional - replaced equality check with false → SURVIVED 3. CastExpression : removed conditional - replaced equality check with false → SURVIVED 4. CastExpression : removed conditional - replaced equality check with true → SURVIVED 5. CastExpression : negated conditional → KILLED 6. CastExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3863 |
4
1. CastExpression : Substituted 1 with 0 → SURVIVED 2. CastExpression : Substituted 1 with 0 → SURVIVED 3. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. CastExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3864 | } | |
| 3865 | } | |
| 3866 | } | |
| 3867 | ||
| 3868 | final public void PrimaryExpression() throws ParseException { | |
| 3869 | /*@bgen(jjtree) PrimaryExpression */ | |
| 3870 |
2
1. PrimaryExpression : Substituted 59 with 60 → SURVIVED 2. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTPRIMARYEXPRESSION); |
| 3871 |
1
1. PrimaryExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3872 |
1
1. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3873 | try { | |
| 3874 |
1
1. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimaryPrefix → KILLED |
PrimaryPrefix(); |
| 3875 | label_33:while (true) { | |
| 3876 |
5
1. PrimaryExpression : Substituted 2 with 3 → SURVIVED 2. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_24 → SURVIVED 3. PrimaryExpression : removed conditional - replaced equality check with false → SURVIVED 4. PrimaryExpression : negated conditional → KILLED 5. PrimaryExpression : removed conditional - replaced equality check with true → KILLED |
if (jj_2_24(2)) { |
| 3877 | ; | |
| 3878 | } else { | |
| 3879 | break label_33; | |
| 3880 | } | |
| 3881 |
1
1. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimarySuffix → NO_COVERAGE |
PrimarySuffix(); |
| 3882 | } | |
| 3883 | } catch (Throwable jjte000) { | |
| 3884 |
3
1. PrimaryExpression : removed conditional - replaced equality check with true → SURVIVED 2. PrimaryExpression : negated conditional → KILLED 3. PrimaryExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3885 |
1
1. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3886 |
1
1. PrimaryExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3887 | } else { | |
| 3888 |
1
1. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3889 | } | |
| 3890 |
3
1. PrimaryExpression : removed conditional - replaced equality check with true → SURVIVED 2. PrimaryExpression : negated conditional → KILLED 3. PrimaryExpression : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 3891 | { | |
| 3892 | if (true) { | |
| 3893 | throw (RuntimeException) jjte000; | |
| 3894 | } | |
| 3895 | } | |
| 3896 | } | |
| 3897 |
3
1. PrimaryExpression : negated conditional → SURVIVED 2. PrimaryExpression : removed conditional - replaced equality check with false → SURVIVED 3. PrimaryExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 3898 | { | |
| 3899 | if (true) { | |
| 3900 | throw (ParseException) jjte000; | |
| 3901 | } | |
| 3902 | } | |
| 3903 | } | |
| 3904 | { | |
| 3905 | if (true) { | |
| 3906 | throw (Error) jjte000; | |
| 3907 | } | |
| 3908 | } | |
| 3909 | } finally { | |
| 3910 |
6
1. PrimaryExpression : negated conditional → SURVIVED 2. PrimaryExpression : removed conditional - replaced equality check with false → SURVIVED 3. PrimaryExpression : removed conditional - replaced equality check with false → SURVIVED 4. PrimaryExpression : removed conditional - replaced equality check with true → SURVIVED 5. PrimaryExpression : negated conditional → KILLED 6. PrimaryExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3911 |
4
1. PrimaryExpression : Substituted 1 with 0 → SURVIVED 2. PrimaryExpression : Substituted 1 with 0 → SURVIVED 3. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. PrimaryExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3912 | } | |
| 3913 | } | |
| 3914 | } | |
| 3915 | ||
| 3916 | final public void MemberSelector() throws ParseException { | |
| 3917 | /*@bgen(jjtree) MemberSelector */ | |
| 3918 |
2
1. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. MemberSelector : Substituted 60 with 61 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMEMBERSELECTOR); |
| 3919 |
1
1. MemberSelector : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3920 |
1
1. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3921 | try { | |
| 3922 |
2
1. MemberSelector : Substituted 85 with 86 → SURVIVED 2. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(DOT); |
| 3923 |
1
1. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeArguments → SURVIVED |
TypeArguments(); |
| 3924 |
2
1. MemberSelector : Substituted 74 with 75 → SURVIVED 2. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IDENTIFIER); |
| 3925 | } catch (Throwable jjte000) { | |
| 3926 |
3
1. MemberSelector : removed conditional - replaced equality check with true → SURVIVED 2. MemberSelector : negated conditional → KILLED 3. MemberSelector : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 3927 |
1
1. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 3928 |
1
1. MemberSelector : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 3929 | } else { | |
| 3930 |
1
1. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 3931 | } | |
| 3932 |
3
1. MemberSelector : negated conditional → SURVIVED 2. MemberSelector : removed conditional - replaced equality check with false → SURVIVED 3. MemberSelector : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 3933 | { | |
| 3934 | if (true) { | |
| 3935 | throw (RuntimeException) jjte000; | |
| 3936 | } | |
| 3937 | } | |
| 3938 | } | |
| 3939 |
3
1. MemberSelector : negated conditional → SURVIVED 2. MemberSelector : removed conditional - replaced equality check with false → SURVIVED 3. MemberSelector : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 3940 | { | |
| 3941 | if (true) { | |
| 3942 | throw (ParseException) jjte000; | |
| 3943 | } | |
| 3944 | } | |
| 3945 | } | |
| 3946 | { | |
| 3947 | if (true) { | |
| 3948 | throw (Error) jjte000; | |
| 3949 | } | |
| 3950 | } | |
| 3951 | } finally { | |
| 3952 |
6
1. MemberSelector : negated conditional → SURVIVED 2. MemberSelector : removed conditional - replaced equality check with false → SURVIVED 3. MemberSelector : removed conditional - replaced equality check with false → SURVIVED 4. MemberSelector : removed conditional - replaced equality check with true → SURVIVED 5. MemberSelector : negated conditional → KILLED 6. MemberSelector : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 3953 |
4
1. MemberSelector : Substituted 1 with 0 → SURVIVED 2. MemberSelector : Substituted 1 with 0 → SURVIVED 3. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MemberSelector : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 3954 | } | |
| 3955 | } | |
| 3956 | } | |
| 3957 | ||
| 3958 | final public void PrimaryPrefix() throws ParseException { | |
| 3959 | /*@bgen(jjtree) PrimaryPrefix */ | |
| 3960 |
2
1. PrimaryPrefix : Substituted 61 with 62 → SURVIVED 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTPRIMARYPREFIX); |
| 3961 |
1
1. PrimaryPrefix : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 3962 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 3963 | try { | |
| 3964 |
17
1. PrimaryPrefix : Substituted -1 with 0 → SURVIVED 2. PrimaryPrefix : negated conditional → SURVIVED 3. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. PrimaryPrefix : removed conditional - replaced equality check with false → SURVIVED 5. PrimaryPrefix : removed conditional - replaced equality check with true → SURVIVED 6. PrimaryPrefix : RemoveSwitch 0 mutation → SURVIVED 7. PrimaryPrefix : RemoveSwitch 1 mutation → SURVIVED 8. PrimaryPrefix : RemoveSwitch 10 mutation → SURVIVED 9. PrimaryPrefix : RemoveSwitch 2 mutation → SURVIVED 10. PrimaryPrefix : RemoveSwitch 3 mutation → SURVIVED 11. PrimaryPrefix : RemoveSwitch 4 mutation → SURVIVED 12. PrimaryPrefix : RemoveSwitch 5 mutation → SURVIVED 13. PrimaryPrefix : RemoveSwitch 7 mutation → SURVIVED 14. PrimaryPrefix : RemoveSwitch 8 mutation → SURVIVED 15. PrimaryPrefix : RemoveSwitch 6 mutation → KILLED 16. PrimaryPrefix : RemoveSwitch 9 mutation → KILLED 17. PrimaryPrefix : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3965 | case FALSE: | |
| 3966 | case NULL: | |
| 3967 | case TRUE: | |
| 3968 | case INTEGER_LITERAL: | |
| 3969 | case FLOATING_POINT_LITERAL: | |
| 3970 | case CHARACTER_LITERAL: | |
| 3971 | case STRING_LITERAL: | |
| 3972 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Literal → KILLED |
Literal(); |
| 3973 | break; | |
| 3974 | case THIS: | |
| 3975 |
2
1. PrimaryPrefix : Substituted 57 with 58 → NO_COVERAGE 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(THIS); |
| 3976 | break; | |
| 3977 | case SUPER: | |
| 3978 |
2
1. PrimaryPrefix : Substituted 54 with 55 → NO_COVERAGE 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SUPER); |
| 3979 |
2
1. PrimaryPrefix : Substituted 85 with 86 → NO_COVERAGE 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 3980 |
2
1. PrimaryPrefix : Substituted 74 with 75 → NO_COVERAGE 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 3981 | break; | |
| 3982 | case LPAREN: | |
| 3983 |
2
1. PrimaryPrefix : Substituted 77 with 78 → SURVIVED 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(LPAREN); |
| 3984 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 3985 |
2
1. PrimaryPrefix : Substituted 78 with 79 → SURVIVED 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 3986 | break; | |
| 3987 | case NEW: | |
| 3988 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AllocationExpression → NO_COVERAGE |
AllocationExpression(); |
| 3989 | break; | |
| 3990 | default: | |
| 3991 |
5
1. PrimaryPrefix : Substituted 2147483647 with -2147483648 → SURVIVED 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_25 → SURVIVED 3. PrimaryPrefix : removed conditional - replaced equality check with false → SURVIVED 4. PrimaryPrefix : negated conditional → KILLED 5. PrimaryPrefix : removed conditional - replaced equality check with true → KILLED |
if (jj_2_25(2147483647)) { |
| 3992 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ResultType → NO_COVERAGE |
ResultType(); |
| 3993 |
2
1. PrimaryPrefix : Substituted 85 with 86 → NO_COVERAGE 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 3994 |
2
1. PrimaryPrefix : Substituted 21 with 22 → NO_COVERAGE 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(CLASS); |
| 3995 | } else { | |
| 3996 |
7
1. PrimaryPrefix : Substituted -1 with 0 → SURVIVED 2. PrimaryPrefix : negated conditional → SURVIVED 3. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. PrimaryPrefix : removed conditional - replaced equality check with false → SURVIVED 5. PrimaryPrefix : removed conditional - replaced equality check with true → SURVIVED 6. PrimaryPrefix : RemoveSwitch 0 mutation → KILLED 7. PrimaryPrefix : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 3997 | case IDENTIFIER: | |
| 3998 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → KILLED |
Name(); |
| 3999 | break; | |
| 4000 | default: | |
| 4001 |
2
1. PrimaryPrefix : Substituted -1 with 0 → SURVIVED 2. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 4002 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 4003 | } | |
| 4004 | } | |
| 4005 | } | |
| 4006 | } catch (Throwable jjte000) { | |
| 4007 |
3
1. PrimaryPrefix : removed conditional - replaced equality check with true → SURVIVED 2. PrimaryPrefix : negated conditional → KILLED 3. PrimaryPrefix : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4008 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4009 |
1
1. PrimaryPrefix : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4010 | } else { | |
| 4011 |
1
1. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4012 | } | |
| 4013 |
3
1. PrimaryPrefix : removed conditional - replaced equality check with true → SURVIVED 2. PrimaryPrefix : negated conditional → KILLED 3. PrimaryPrefix : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 4014 | { | |
| 4015 | if (true) { | |
| 4016 | throw (RuntimeException) jjte000; | |
| 4017 | } | |
| 4018 | } | |
| 4019 | } | |
| 4020 |
3
1. PrimaryPrefix : negated conditional → SURVIVED 2. PrimaryPrefix : removed conditional - replaced equality check with false → SURVIVED 3. PrimaryPrefix : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4021 | { | |
| 4022 | if (true) { | |
| 4023 | throw (ParseException) jjte000; | |
| 4024 | } | |
| 4025 | } | |
| 4026 | } | |
| 4027 | { | |
| 4028 | if (true) { | |
| 4029 | throw (Error) jjte000; | |
| 4030 | } | |
| 4031 | } | |
| 4032 | } finally { | |
| 4033 |
6
1. PrimaryPrefix : negated conditional → SURVIVED 2. PrimaryPrefix : removed conditional - replaced equality check with false → SURVIVED 3. PrimaryPrefix : removed conditional - replaced equality check with false → SURVIVED 4. PrimaryPrefix : removed conditional - replaced equality check with true → SURVIVED 5. PrimaryPrefix : negated conditional → KILLED 6. PrimaryPrefix : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4034 |
4
1. PrimaryPrefix : Substituted 1 with 0 → SURVIVED 2. PrimaryPrefix : Substituted 1 with 0 → SURVIVED 3. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. PrimaryPrefix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4035 | } | |
| 4036 | } | |
| 4037 | } | |
| 4038 | ||
| 4039 | final public void PrimarySuffix() throws ParseException { | |
| 4040 | /*@bgen(jjtree) PrimarySuffix */ | |
| 4041 |
2
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. PrimarySuffix : Substituted 62 with 63 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTPRIMARYSUFFIX); |
| 4042 |
1
1. PrimarySuffix : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4043 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4044 | try { | |
| 4045 |
5
1. PrimarySuffix : Substituted 2 with 3 → SURVIVED 2. PrimarySuffix : negated conditional → SURVIVED 3. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_26 → SURVIVED 4. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 5. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_26(2)) { |
| 4046 |
2
1. PrimarySuffix : Substituted 85 with 86 → NO_COVERAGE 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 4047 |
2
1. PrimarySuffix : Substituted 57 with 58 → NO_COVERAGE 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(THIS); |
| 4048 |
5
1. PrimarySuffix : Substituted 2 with 3 → SURVIVED 2. PrimarySuffix : negated conditional → SURVIVED 3. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_27 → SURVIVED 4. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 5. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED |
} else if (jj_2_27(2)) { |
| 4049 |
2
1. PrimarySuffix : Substituted 85 with 86 → NO_COVERAGE 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 4050 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AllocationExpression → NO_COVERAGE |
AllocationExpression(); |
| 4051 |
5
1. PrimarySuffix : Substituted 3 with 4 → SURVIVED 2. PrimarySuffix : negated conditional → SURVIVED 3. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_28 → SURVIVED 4. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 5. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED |
} else if (jj_2_28(3)) { |
| 4052 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberSelector → NO_COVERAGE |
MemberSelector(); |
| 4053 | } else { | |
| 4054 |
9
1. PrimarySuffix : Substituted -1 with 0 → SURVIVED 2. PrimarySuffix : negated conditional → SURVIVED 3. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 5. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED 6. PrimarySuffix : RemoveSwitch 0 mutation → SURVIVED 7. PrimarySuffix : RemoveSwitch 1 mutation → SURVIVED 8. PrimarySuffix : RemoveSwitch 2 mutation → SURVIVED 9. PrimarySuffix : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4055 | case LBRACKET: | |
| 4056 |
2
1. PrimarySuffix : Substituted 81 with 82 → NO_COVERAGE 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 4057 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 4058 |
2
1. PrimarySuffix : Substituted 82 with 83 → NO_COVERAGE 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 4059 | break; | |
| 4060 | case DOT: | |
| 4061 |
2
1. PrimarySuffix : Substituted 85 with 86 → NO_COVERAGE 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DOT); |
| 4062 |
2
1. PrimarySuffix : Substituted 74 with 75 → NO_COVERAGE 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 4063 | break; | |
| 4064 | case LPAREN: | |
| 4065 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Arguments → NO_COVERAGE |
Arguments(); |
| 4066 | break; | |
| 4067 | default: | |
| 4068 |
2
1. PrimarySuffix : Substituted -1 with 0 → SURVIVED 2. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 4069 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 4070 | } | |
| 4071 | } | |
| 4072 | } catch (Throwable jjte000) { | |
| 4073 |
3
1. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED 2. PrimarySuffix : negated conditional → KILLED 3. PrimarySuffix : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4074 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4075 |
1
1. PrimarySuffix : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4076 | } else { | |
| 4077 |
1
1. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4078 | } | |
| 4079 |
3
1. PrimarySuffix : negated conditional → SURVIVED 2. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 3. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4080 | { | |
| 4081 | if (true) { | |
| 4082 | throw (RuntimeException) jjte000; | |
| 4083 | } | |
| 4084 | } | |
| 4085 | } | |
| 4086 |
3
1. PrimarySuffix : negated conditional → SURVIVED 2. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 3. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4087 | { | |
| 4088 | if (true) { | |
| 4089 | throw (ParseException) jjte000; | |
| 4090 | } | |
| 4091 | } | |
| 4092 | } | |
| 4093 | { | |
| 4094 | if (true) { | |
| 4095 | throw (Error) jjte000; | |
| 4096 | } | |
| 4097 | } | |
| 4098 | } finally { | |
| 4099 |
6
1. PrimarySuffix : negated conditional → SURVIVED 2. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 3. PrimarySuffix : removed conditional - replaced equality check with false → SURVIVED 4. PrimarySuffix : removed conditional - replaced equality check with true → SURVIVED 5. PrimarySuffix : negated conditional → KILLED 6. PrimarySuffix : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4100 |
4
1. PrimarySuffix : Substituted 1 with 0 → SURVIVED 2. PrimarySuffix : Substituted 1 with 0 → SURVIVED 3. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. PrimarySuffix : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4101 | } | |
| 4102 | } | |
| 4103 | } | |
| 4104 | ||
| 4105 | final public void Literal() throws ParseException { | |
| 4106 | /*@bgen(jjtree) Literal */ | |
| 4107 |
2
1. Literal : Substituted 63 with 64 → SURVIVED 2. Literal : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTLITERAL); |
| 4108 |
1
1. Literal : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4109 |
1
1. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4110 | try { | |
| 4111 |
13
1. Literal : Substituted -1 with 0 → SURVIVED 2. Literal : negated conditional → SURVIVED 3. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. Literal : removed conditional - replaced equality check with false → SURVIVED 5. Literal : removed conditional - replaced equality check with true → SURVIVED 6. Literal : RemoveSwitch 0 mutation → SURVIVED 7. Literal : RemoveSwitch 1 mutation → SURVIVED 8. Literal : RemoveSwitch 2 mutation → SURVIVED 9. Literal : RemoveSwitch 4 mutation → SURVIVED 10. Literal : RemoveSwitch 5 mutation → SURVIVED 11. Literal : RemoveSwitch 3 mutation → KILLED 12. Literal : RemoveSwitch 6 mutation → KILLED 13. Literal : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4112 | case INTEGER_LITERAL: | |
| 4113 |
2
1. Literal : Substituted 66 with 67 → KILLED 2. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(INTEGER_LITERAL); |
| 4114 | break; | |
| 4115 | case FLOATING_POINT_LITERAL: | |
| 4116 |
2
1. Literal : Substituted 70 with 71 → NO_COVERAGE 2. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(FLOATING_POINT_LITERAL); |
| 4117 | break; | |
| 4118 | case CHARACTER_LITERAL: | |
| 4119 |
2
1. Literal : Substituted 72 with 73 → NO_COVERAGE 2. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(CHARACTER_LITERAL); |
| 4120 | break; | |
| 4121 | case STRING_LITERAL: | |
| 4122 |
2
1. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED 2. Literal : Substituted 73 with 74 → KILLED |
jj_consume_token(STRING_LITERAL); |
| 4123 | break; | |
| 4124 | case FALSE: | |
| 4125 | case TRUE: | |
| 4126 |
1
1. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::BooleanLiteral → NO_COVERAGE |
BooleanLiteral(); |
| 4127 | break; | |
| 4128 | case NULL: | |
| 4129 |
1
1. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::NullLiteral → NO_COVERAGE |
NullLiteral(); |
| 4130 | break; | |
| 4131 | default: | |
| 4132 |
2
1. Literal : Substituted -1 with 0 → SURVIVED 2. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 4133 |
1
1. Literal : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 4134 | } | |
| 4135 | } catch (Throwable jjte000) { | |
| 4136 |
3
1. Literal : removed conditional - replaced equality check with true → SURVIVED 2. Literal : negated conditional → KILLED 3. Literal : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4137 |
1
1. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4138 |
1
1. Literal : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4139 | } else { | |
| 4140 |
1
1. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4141 | } | |
| 4142 |
3
1. Literal : negated conditional → SURVIVED 2. Literal : removed conditional - replaced equality check with false → SURVIVED 3. Literal : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4143 | { | |
| 4144 | if (true) { | |
| 4145 | throw (RuntimeException) jjte000; | |
| 4146 | } | |
| 4147 | } | |
| 4148 | } | |
| 4149 |
3
1. Literal : negated conditional → SURVIVED 2. Literal : removed conditional - replaced equality check with false → SURVIVED 3. Literal : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4150 | { | |
| 4151 | if (true) { | |
| 4152 | throw (ParseException) jjte000; | |
| 4153 | } | |
| 4154 | } | |
| 4155 | } | |
| 4156 | { | |
| 4157 | if (true) { | |
| 4158 | throw (Error) jjte000; | |
| 4159 | } | |
| 4160 | } | |
| 4161 | } finally { | |
| 4162 |
6
1. Literal : negated conditional → SURVIVED 2. Literal : removed conditional - replaced equality check with false → SURVIVED 3. Literal : removed conditional - replaced equality check with false → SURVIVED 4. Literal : removed conditional - replaced equality check with true → SURVIVED 5. Literal : negated conditional → KILLED 6. Literal : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4163 |
4
1. Literal : Substituted 1 with 0 → SURVIVED 2. Literal : Substituted 1 with 0 → SURVIVED 3. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Literal : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4164 | } | |
| 4165 | } | |
| 4166 | } | |
| 4167 | ||
| 4168 | final public void BooleanLiteral() throws ParseException { | |
| 4169 | /*@bgen(jjtree) BooleanLiteral */ | |
| 4170 |
2
1. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. BooleanLiteral : Substituted 64 with 65 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTBOOLEANLITERAL); |
| 4171 |
1
1. BooleanLiteral : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 4172 |
1
1. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4173 | try { | |
| 4174 |
8
1. BooleanLiteral : Substituted -1 with 0 → SURVIVED 2. BooleanLiteral : negated conditional → SURVIVED 3. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. BooleanLiteral : removed conditional - replaced equality check with false → SURVIVED 5. BooleanLiteral : removed conditional - replaced equality check with true → SURVIVED 6. BooleanLiteral : RemoveSwitch 0 mutation → SURVIVED 7. BooleanLiteral : RemoveSwitch 1 mutation → SURVIVED 8. BooleanLiteral : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4175 | case TRUE: | |
| 4176 |
2
1. BooleanLiteral : Substituted 61 with 62 → NO_COVERAGE 2. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(TRUE); |
| 4177 | break; | |
| 4178 | case FALSE: | |
| 4179 |
2
1. BooleanLiteral : Substituted 30 with 31 → NO_COVERAGE 2. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(FALSE); |
| 4180 | break; | |
| 4181 | default: | |
| 4182 |
2
1. BooleanLiteral : Substituted -1 with 0 → SURVIVED 2. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 4183 |
1
1. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 4184 | } | |
| 4185 | } finally { | |
| 4186 |
6
1. BooleanLiteral : negated conditional → SURVIVED 2. BooleanLiteral : negated conditional → SURVIVED 3. BooleanLiteral : removed conditional - replaced equality check with false → SURVIVED 4. BooleanLiteral : removed conditional - replaced equality check with false → SURVIVED 5. BooleanLiteral : removed conditional - replaced equality check with true → SURVIVED 6. BooleanLiteral : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 4187 |
4
1. BooleanLiteral : Substituted 1 with 0 → SURVIVED 2. BooleanLiteral : Substituted 1 with 0 → SURVIVED 3. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. BooleanLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4188 | } | |
| 4189 | } | |
| 4190 | } | |
| 4191 | ||
| 4192 | final public void NullLiteral() throws ParseException { | |
| 4193 | /*@bgen(jjtree) NullLiteral */ | |
| 4194 |
2
1. NullLiteral : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. NullLiteral : Substituted 65 with 66 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTNULLLITERAL); |
| 4195 |
1
1. NullLiteral : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 4196 |
1
1. NullLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4197 | try { | |
| 4198 |
2
1. NullLiteral : Substituted 45 with 46 → SURVIVED 2. NullLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(NULL); |
| 4199 | } finally { | |
| 4200 |
6
1. NullLiteral : negated conditional → SURVIVED 2. NullLiteral : negated conditional → SURVIVED 3. NullLiteral : removed conditional - replaced equality check with false → SURVIVED 4. NullLiteral : removed conditional - replaced equality check with false → SURVIVED 5. NullLiteral : removed conditional - replaced equality check with true → SURVIVED 6. NullLiteral : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 4201 |
4
1. NullLiteral : Substituted 1 with 0 → SURVIVED 2. NullLiteral : Substituted 1 with 0 → SURVIVED 3. NullLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. NullLiteral : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4202 | } | |
| 4203 | } | |
| 4204 | } | |
| 4205 | ||
| 4206 | final public void Arguments() throws ParseException { | |
| 4207 | /*@bgen(jjtree) Arguments */ | |
| 4208 |
2
1. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. Arguments : Substituted 66 with 67 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTARGUMENTS); |
| 4209 |
1
1. Arguments : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4210 |
1
1. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4211 | try { | |
| 4212 |
2
1. Arguments : Substituted 77 with 78 → SURVIVED 2. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 4213 |
94
1. Arguments : Substituted -1 with 0 → SURVIVED 2. Arguments : negated conditional → SURVIVED 3. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. Arguments : removed conditional - replaced equality check with false → SURVIVED 5. Arguments : removed conditional - replaced equality check with true → SURVIVED 6. Arguments : RemoveSwitch 0 mutation → SURVIVED 7. Arguments : RemoveSwitch 1 mutation → SURVIVED 8. Arguments : RemoveSwitch 10 mutation → SURVIVED 9. Arguments : RemoveSwitch 11 mutation → SURVIVED 10. Arguments : RemoveSwitch 12 mutation → SURVIVED 11. Arguments : RemoveSwitch 13 mutation → SURVIVED 12. Arguments : RemoveSwitch 14 mutation → SURVIVED 13. Arguments : RemoveSwitch 15 mutation → SURVIVED 14. Arguments : RemoveSwitch 16 mutation → SURVIVED 15. Arguments : RemoveSwitch 17 mutation → SURVIVED 16. Arguments : RemoveSwitch 18 mutation → SURVIVED 17. Arguments : RemoveSwitch 19 mutation → SURVIVED 18. Arguments : RemoveSwitch 2 mutation → SURVIVED 19. Arguments : RemoveSwitch 20 mutation → SURVIVED 20. Arguments : RemoveSwitch 21 mutation → SURVIVED 21. Arguments : RemoveSwitch 22 mutation → SURVIVED 22. Arguments : RemoveSwitch 23 mutation → SURVIVED 23. Arguments : RemoveSwitch 24 mutation → SURVIVED 24. Arguments : RemoveSwitch 25 mutation → SURVIVED 25. Arguments : RemoveSwitch 26 mutation → SURVIVED 26. Arguments : RemoveSwitch 27 mutation → SURVIVED 27. Arguments : RemoveSwitch 28 mutation → SURVIVED 28. Arguments : RemoveSwitch 29 mutation → SURVIVED 29. Arguments : RemoveSwitch 3 mutation → SURVIVED 30. Arguments : RemoveSwitch 30 mutation → SURVIVED 31. Arguments : RemoveSwitch 31 mutation → SURVIVED 32. Arguments : RemoveSwitch 32 mutation → SURVIVED 33. Arguments : RemoveSwitch 33 mutation → SURVIVED 34. Arguments : RemoveSwitch 34 mutation → SURVIVED 35. Arguments : RemoveSwitch 35 mutation → SURVIVED 36. Arguments : RemoveSwitch 36 mutation → SURVIVED 37. Arguments : RemoveSwitch 37 mutation → SURVIVED 38. Arguments : RemoveSwitch 38 mutation → SURVIVED 39. Arguments : RemoveSwitch 39 mutation → SURVIVED 40. Arguments : RemoveSwitch 4 mutation → SURVIVED 41. Arguments : RemoveSwitch 40 mutation → SURVIVED 42. Arguments : RemoveSwitch 41 mutation → SURVIVED 43. Arguments : RemoveSwitch 42 mutation → SURVIVED 44. Arguments : RemoveSwitch 43 mutation → SURVIVED 45. Arguments : RemoveSwitch 44 mutation → SURVIVED 46. Arguments : RemoveSwitch 45 mutation → SURVIVED 47. Arguments : RemoveSwitch 46 mutation → SURVIVED 48. Arguments : RemoveSwitch 47 mutation → SURVIVED 49. Arguments : RemoveSwitch 48 mutation → SURVIVED 50. Arguments : RemoveSwitch 49 mutation → SURVIVED 51. Arguments : RemoveSwitch 5 mutation → SURVIVED 52. Arguments : RemoveSwitch 50 mutation → SURVIVED 53. Arguments : RemoveSwitch 51 mutation → SURVIVED 54. Arguments : RemoveSwitch 52 mutation → SURVIVED 55. Arguments : RemoveSwitch 53 mutation → SURVIVED 56. Arguments : RemoveSwitch 54 mutation → SURVIVED 57. Arguments : RemoveSwitch 55 mutation → SURVIVED 58. Arguments : RemoveSwitch 56 mutation → SURVIVED 59. Arguments : RemoveSwitch 57 mutation → SURVIVED 60. Arguments : RemoveSwitch 58 mutation → SURVIVED 61. Arguments : RemoveSwitch 59 mutation → SURVIVED 62. Arguments : RemoveSwitch 6 mutation → SURVIVED 63. Arguments : RemoveSwitch 60 mutation → SURVIVED 64. Arguments : RemoveSwitch 61 mutation → SURVIVED 65. Arguments : RemoveSwitch 62 mutation → SURVIVED 66. Arguments : RemoveSwitch 63 mutation → SURVIVED 67. Arguments : RemoveSwitch 64 mutation → SURVIVED 68. Arguments : RemoveSwitch 65 mutation → SURVIVED 69. Arguments : RemoveSwitch 66 mutation → SURVIVED 70. Arguments : RemoveSwitch 67 mutation → SURVIVED 71. Arguments : RemoveSwitch 68 mutation → SURVIVED 72. Arguments : RemoveSwitch 69 mutation → SURVIVED 73. Arguments : RemoveSwitch 7 mutation → SURVIVED 74. Arguments : RemoveSwitch 70 mutation → SURVIVED 75. Arguments : RemoveSwitch 71 mutation → SURVIVED 76. Arguments : RemoveSwitch 72 mutation → SURVIVED 77. Arguments : RemoveSwitch 73 mutation → SURVIVED 78. Arguments : RemoveSwitch 74 mutation → SURVIVED 79. Arguments : RemoveSwitch 75 mutation → SURVIVED 80. Arguments : RemoveSwitch 76 mutation → SURVIVED 81. Arguments : RemoveSwitch 77 mutation → SURVIVED 82. Arguments : RemoveSwitch 78 mutation → SURVIVED 83. Arguments : RemoveSwitch 79 mutation → SURVIVED 84. Arguments : RemoveSwitch 8 mutation → SURVIVED 85. Arguments : RemoveSwitch 80 mutation → SURVIVED 86. Arguments : RemoveSwitch 81 mutation → SURVIVED 87. Arguments : RemoveSwitch 82 mutation → SURVIVED 88. Arguments : RemoveSwitch 83 mutation → SURVIVED 89. Arguments : RemoveSwitch 84 mutation → SURVIVED 90. Arguments : RemoveSwitch 85 mutation → SURVIVED 91. Arguments : RemoveSwitch 86 mutation → SURVIVED 92. Arguments : RemoveSwitch 87 mutation → SURVIVED 93. Arguments : RemoveSwitch 9 mutation → SURVIVED 94. Arguments : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4214 | case BOOLEAN: | |
| 4215 | case BYTE: | |
| 4216 | case CHAR: | |
| 4217 | case DOUBLE: | |
| 4218 | case FALSE: | |
| 4219 | case FLOAT: | |
| 4220 | case INT: | |
| 4221 | case LONG: | |
| 4222 | case NEW: | |
| 4223 | case NULL: | |
| 4224 | case SHORT: | |
| 4225 | case SUPER: | |
| 4226 | case THIS: | |
| 4227 | case TRUE: | |
| 4228 | case VOID: | |
| 4229 | case INTEGER_LITERAL: | |
| 4230 | case FLOATING_POINT_LITERAL: | |
| 4231 | case CHARACTER_LITERAL: | |
| 4232 | case STRING_LITERAL: | |
| 4233 | case IDENTIFIER: | |
| 4234 | case LPAREN: | |
| 4235 | case BANG: | |
| 4236 | case TILDE: | |
| 4237 | case INCR: | |
| 4238 | case DECR: | |
| 4239 | case PLUS: | |
| 4240 | case MINUS: | |
| 4241 |
1
1. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ArgumentList → NO_COVERAGE |
ArgumentList(); |
| 4242 | break; | |
| 4243 | default: | |
| 4244 | ; | |
| 4245 | } | |
| 4246 |
2
1. Arguments : Substituted 78 with 79 → NO_COVERAGE 2. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 4247 | } catch (Throwable jjte000) { | |
| 4248 |
3
1. Arguments : removed conditional - replaced equality check with true → SURVIVED 2. Arguments : negated conditional → KILLED 3. Arguments : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4249 |
1
1. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4250 |
1
1. Arguments : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4251 | } else { | |
| 4252 |
1
1. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4253 | } | |
| 4254 |
3
1. Arguments : negated conditional → SURVIVED 2. Arguments : removed conditional - replaced equality check with false → SURVIVED 3. Arguments : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4255 | { | |
| 4256 | if (true) { | |
| 4257 | throw (RuntimeException) jjte000; | |
| 4258 | } | |
| 4259 | } | |
| 4260 | } | |
| 4261 |
3
1. Arguments : negated conditional → SURVIVED 2. Arguments : removed conditional - replaced equality check with false → SURVIVED 3. Arguments : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4262 | { | |
| 4263 | if (true) { | |
| 4264 | throw (ParseException) jjte000; | |
| 4265 | } | |
| 4266 | } | |
| 4267 | } | |
| 4268 | { | |
| 4269 | if (true) { | |
| 4270 | throw (Error) jjte000; | |
| 4271 | } | |
| 4272 | } | |
| 4273 | } finally { | |
| 4274 |
6
1. Arguments : negated conditional → SURVIVED 2. Arguments : removed conditional - replaced equality check with false → SURVIVED 3. Arguments : removed conditional - replaced equality check with false → SURVIVED 4. Arguments : removed conditional - replaced equality check with true → SURVIVED 5. Arguments : negated conditional → KILLED 6. Arguments : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4275 |
4
1. Arguments : Substituted 1 with 0 → SURVIVED 2. Arguments : Substituted 1 with 0 → SURVIVED 3. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Arguments : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4276 | } | |
| 4277 | } | |
| 4278 | } | |
| 4279 | ||
| 4280 | final public void ArgumentList() throws ParseException { | |
| 4281 | /*@bgen(jjtree) ArgumentList */ | |
| 4282 |
2
1. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ArgumentList : Substituted 67 with 68 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTARGUMENTLIST); |
| 4283 |
1
1. ArgumentList : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4284 |
1
1. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4285 | try { | |
| 4286 |
1
1. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → KILLED |
Expression(); |
| 4287 | label_34:while (true) { | |
| 4288 |
7
1. ArgumentList : Substituted -1 with 0 → NO_COVERAGE 2. ArgumentList : negated conditional → NO_COVERAGE 3. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ArgumentList : removed conditional - replaced equality check with false → NO_COVERAGE 5. ArgumentList : removed conditional - replaced equality check with true → NO_COVERAGE 6. ArgumentList : RemoveSwitch 0 mutation → NO_COVERAGE 7. ArgumentList : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4289 | case COMMA: | |
| 4290 | ; | |
| 4291 | break; | |
| 4292 | default: | |
| 4293 | break label_34; | |
| 4294 | } | |
| 4295 |
2
1. ArgumentList : Substituted 84 with 85 → NO_COVERAGE 2. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 4296 |
1
1. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 4297 | } | |
| 4298 | } catch (Throwable jjte000) { | |
| 4299 |
3
1. ArgumentList : removed conditional - replaced equality check with true → SURVIVED 2. ArgumentList : negated conditional → KILLED 3. ArgumentList : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4300 |
1
1. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4301 |
1
1. ArgumentList : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4302 | } else { | |
| 4303 |
1
1. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4304 | } | |
| 4305 |
3
1. ArgumentList : negated conditional → SURVIVED 2. ArgumentList : removed conditional - replaced equality check with false → SURVIVED 3. ArgumentList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4306 | { | |
| 4307 | if (true) { | |
| 4308 | throw (RuntimeException) jjte000; | |
| 4309 | } | |
| 4310 | } | |
| 4311 | } | |
| 4312 |
3
1. ArgumentList : negated conditional → SURVIVED 2. ArgumentList : removed conditional - replaced equality check with false → SURVIVED 3. ArgumentList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4313 | { | |
| 4314 | if (true) { | |
| 4315 | throw (ParseException) jjte000; | |
| 4316 | } | |
| 4317 | } | |
| 4318 | } | |
| 4319 | { | |
| 4320 | if (true) { | |
| 4321 | throw (Error) jjte000; | |
| 4322 | } | |
| 4323 | } | |
| 4324 | } finally { | |
| 4325 |
6
1. ArgumentList : negated conditional → SURVIVED 2. ArgumentList : removed conditional - replaced equality check with false → SURVIVED 3. ArgumentList : removed conditional - replaced equality check with false → SURVIVED 4. ArgumentList : removed conditional - replaced equality check with true → SURVIVED 5. ArgumentList : negated conditional → KILLED 6. ArgumentList : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4326 |
4
1. ArgumentList : Substituted 1 with 0 → SURVIVED 2. ArgumentList : Substituted 1 with 0 → SURVIVED 3. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ArgumentList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4327 | } | |
| 4328 | } | |
| 4329 | } | |
| 4330 | ||
| 4331 | final public void AllocationExpression() throws ParseException { | |
| 4332 | /*@bgen(jjtree) AllocationExpression */ | |
| 4333 |
2
1. AllocationExpression : Substituted 68 with 69 → SURVIVED 2. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTALLOCATIONEXPRESSION); |
| 4334 |
1
1. AllocationExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4335 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4336 | try { | |
| 4337 |
5
1. AllocationExpression : Substituted 2 with 3 → SURVIVED 2. AllocationExpression : negated conditional → SURVIVED 3. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_29 → SURVIVED 4. AllocationExpression : removed conditional - replaced equality check with false → SURVIVED 5. AllocationExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_29(2)) { |
| 4338 |
2
1. AllocationExpression : Substituted 44 with 45 → NO_COVERAGE 2. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(NEW); |
| 4339 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimitiveType → NO_COVERAGE |
PrimitiveType(); |
| 4340 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ArrayDimsAndInits → NO_COVERAGE |
ArrayDimsAndInits(); |
| 4341 | } else { | |
| 4342 |
7
1. AllocationExpression : Substituted -1 with 0 → SURVIVED 2. AllocationExpression : negated conditional → SURVIVED 3. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. AllocationExpression : removed conditional - replaced equality check with false → SURVIVED 5. AllocationExpression : removed conditional - replaced equality check with true → SURVIVED 6. AllocationExpression : RemoveSwitch 0 mutation → SURVIVED 7. AllocationExpression : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4343 | case NEW: | |
| 4344 |
2
1. AllocationExpression : Substituted 44 with 45 → NO_COVERAGE 2. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(NEW); |
| 4345 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceType → NO_COVERAGE |
ClassOrInterfaceType(); |
| 4346 |
7
1. AllocationExpression : Substituted -1 with 0 → NO_COVERAGE 2. AllocationExpression : negated conditional → NO_COVERAGE 3. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. AllocationExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. AllocationExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. AllocationExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. AllocationExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4347 | case LT: | |
| 4348 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TypeArguments → NO_COVERAGE |
TypeArguments(); |
| 4349 | break; | |
| 4350 | default: | |
| 4351 | ; | |
| 4352 | } | |
| 4353 |
8
1. AllocationExpression : Substituted -1 with 0 → NO_COVERAGE 2. AllocationExpression : negated conditional → NO_COVERAGE 3. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. AllocationExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. AllocationExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. AllocationExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. AllocationExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. AllocationExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4354 | case LBRACKET: | |
| 4355 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ArrayDimsAndInits → NO_COVERAGE |
ArrayDimsAndInits(); |
| 4356 | break; | |
| 4357 | case LPAREN: | |
| 4358 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Arguments → NO_COVERAGE |
Arguments(); |
| 4359 |
7
1. AllocationExpression : Substituted -1 with 0 → NO_COVERAGE 2. AllocationExpression : negated conditional → NO_COVERAGE 3. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. AllocationExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. AllocationExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. AllocationExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. AllocationExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4360 | case LBRACE: | |
| 4361 |
2
1. AllocationExpression : Substituted 0 with 1 → NO_COVERAGE 2. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceBody → NO_COVERAGE |
ClassOrInterfaceBody(false); |
| 4362 | break; | |
| 4363 | default: | |
| 4364 | ; | |
| 4365 | } | |
| 4366 | break; | |
| 4367 | default: | |
| 4368 |
2
1. AllocationExpression : Substituted -1 with 0 → NO_COVERAGE 2. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 4369 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 4370 | } | |
| 4371 | break; | |
| 4372 | default: | |
| 4373 |
2
1. AllocationExpression : Substituted -1 with 0 → SURVIVED 2. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 4374 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 4375 | } | |
| 4376 | } | |
| 4377 | } catch (Throwable jjte000) { | |
| 4378 |
3
1. AllocationExpression : removed conditional - replaced equality check with true → SURVIVED 2. AllocationExpression : negated conditional → KILLED 3. AllocationExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4379 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4380 |
1
1. AllocationExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4381 | } else { | |
| 4382 |
1
1. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4383 | } | |
| 4384 |
3
1. AllocationExpression : negated conditional → SURVIVED 2. AllocationExpression : removed conditional - replaced equality check with false → SURVIVED 3. AllocationExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4385 | { | |
| 4386 | if (true) { | |
| 4387 | throw (RuntimeException) jjte000; | |
| 4388 | } | |
| 4389 | } | |
| 4390 | } | |
| 4391 |
3
1. AllocationExpression : negated conditional → SURVIVED 2. AllocationExpression : removed conditional - replaced equality check with false → SURVIVED 3. AllocationExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4392 | { | |
| 4393 | if (true) { | |
| 4394 | throw (ParseException) jjte000; | |
| 4395 | } | |
| 4396 | } | |
| 4397 | } | |
| 4398 | { | |
| 4399 | if (true) { | |
| 4400 | throw (Error) jjte000; | |
| 4401 | } | |
| 4402 | } | |
| 4403 | } finally { | |
| 4404 |
6
1. AllocationExpression : negated conditional → SURVIVED 2. AllocationExpression : removed conditional - replaced equality check with false → SURVIVED 3. AllocationExpression : removed conditional - replaced equality check with false → SURVIVED 4. AllocationExpression : removed conditional - replaced equality check with true → SURVIVED 5. AllocationExpression : negated conditional → KILLED 6. AllocationExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4405 |
4
1. AllocationExpression : Substituted 1 with 0 → SURVIVED 2. AllocationExpression : Substituted 1 with 0 → SURVIVED 3. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. AllocationExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4406 | } | |
| 4407 | } | |
| 4408 | } | |
| 4409 | ||
| 4410 | /* | |
| 4411 | * The third LOOKAHEAD specification below is to parse to PrimarySuffix | |
| 4412 | * if there is an expression between the "[...]". | |
| 4413 | */ | |
| 4414 | final public void ArrayDimsAndInits() throws ParseException { | |
| 4415 | /*@bgen(jjtree) ArrayDimsAndInits */ | |
| 4416 |
2
1. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ArrayDimsAndInits : Substituted 69 with 70 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTARRAYDIMSANDINITS); |
| 4417 |
1
1. ArrayDimsAndInits : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4418 |
1
1. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4419 | try { | |
| 4420 |
5
1. ArrayDimsAndInits : Substituted 2 with 3 → SURVIVED 2. ArrayDimsAndInits : negated conditional → SURVIVED 3. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_32 → SURVIVED 4. ArrayDimsAndInits : removed conditional - replaced equality check with false → SURVIVED 5. ArrayDimsAndInits : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_32(2)) { |
| 4421 | label_35:while (true) { | |
| 4422 |
2
1. ArrayDimsAndInits : Substituted 81 with 82 → NO_COVERAGE 2. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 4423 |
1
1. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 4424 |
2
1. ArrayDimsAndInits : Substituted 82 with 83 → NO_COVERAGE 2. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 4425 |
5
1. ArrayDimsAndInits : Substituted 2 with 3 → NO_COVERAGE 2. ArrayDimsAndInits : negated conditional → NO_COVERAGE 3. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_30 → NO_COVERAGE 4. ArrayDimsAndInits : removed conditional - replaced equality check with false → NO_COVERAGE 5. ArrayDimsAndInits : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_30(2)) { |
| 4426 | ; | |
| 4427 | } else { | |
| 4428 | break label_35; | |
| 4429 | } | |
| 4430 | } | |
| 4431 | label_36:while (true) { | |
| 4432 |
5
1. ArrayDimsAndInits : Substituted 2 with 3 → NO_COVERAGE 2. ArrayDimsAndInits : negated conditional → NO_COVERAGE 3. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_31 → NO_COVERAGE 4. ArrayDimsAndInits : removed conditional - replaced equality check with false → NO_COVERAGE 5. ArrayDimsAndInits : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_31(2)) { |
| 4433 | ; | |
| 4434 | } else { | |
| 4435 | break label_36; | |
| 4436 | } | |
| 4437 |
2
1. ArrayDimsAndInits : Substituted 81 with 82 → NO_COVERAGE 2. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 4438 |
2
1. ArrayDimsAndInits : Substituted 82 with 83 → NO_COVERAGE 2. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 4439 | } | |
| 4440 | } else { | |
| 4441 |
7
1. ArrayDimsAndInits : Substituted -1 with 0 → SURVIVED 2. ArrayDimsAndInits : negated conditional → SURVIVED 3. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ArrayDimsAndInits : removed conditional - replaced equality check with false → SURVIVED 5. ArrayDimsAndInits : removed conditional - replaced equality check with true → SURVIVED 6. ArrayDimsAndInits : RemoveSwitch 0 mutation → SURVIVED 7. ArrayDimsAndInits : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4442 | case LBRACKET: | |
| 4443 | label_37: | |
| 4444 | while (true) { | |
| 4445 |
2
1. ArrayDimsAndInits : Substituted 81 with 82 → NO_COVERAGE 2. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACKET); |
| 4446 |
2
1. ArrayDimsAndInits : Substituted 82 with 83 → NO_COVERAGE 2. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACKET); |
| 4447 |
7
1. ArrayDimsAndInits : Substituted -1 with 0 → NO_COVERAGE 2. ArrayDimsAndInits : negated conditional → NO_COVERAGE 3. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ArrayDimsAndInits : removed conditional - replaced equality check with false → NO_COVERAGE 5. ArrayDimsAndInits : removed conditional - replaced equality check with true → NO_COVERAGE 6. ArrayDimsAndInits : RemoveSwitch 0 mutation → NO_COVERAGE 7. ArrayDimsAndInits : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4448 | case LBRACKET: | |
| 4449 | ; | |
| 4450 | break; | |
| 4451 | default: | |
| 4452 | break label_37; | |
| 4453 | } | |
| 4454 | } | |
| 4455 |
1
1. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ArrayInitializer → NO_COVERAGE |
ArrayInitializer(); |
| 4456 | break; | |
| 4457 | default: | |
| 4458 |
2
1. ArrayDimsAndInits : Substituted -1 with 0 → SURVIVED 2. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 4459 |
1
1. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 4460 | } | |
| 4461 | } | |
| 4462 | } catch (Throwable jjte000) { | |
| 4463 |
3
1. ArrayDimsAndInits : removed conditional - replaced equality check with true → SURVIVED 2. ArrayDimsAndInits : negated conditional → KILLED 3. ArrayDimsAndInits : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4464 |
1
1. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4465 |
1
1. ArrayDimsAndInits : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4466 | } else { | |
| 4467 |
1
1. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4468 | } | |
| 4469 |
3
1. ArrayDimsAndInits : negated conditional → SURVIVED 2. ArrayDimsAndInits : removed conditional - replaced equality check with false → SURVIVED 3. ArrayDimsAndInits : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4470 | { | |
| 4471 | if (true) { | |
| 4472 | throw (RuntimeException) jjte000; | |
| 4473 | } | |
| 4474 | } | |
| 4475 | } | |
| 4476 |
3
1. ArrayDimsAndInits : negated conditional → SURVIVED 2. ArrayDimsAndInits : removed conditional - replaced equality check with false → SURVIVED 3. ArrayDimsAndInits : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4477 | { | |
| 4478 | if (true) { | |
| 4479 | throw (ParseException) jjte000; | |
| 4480 | } | |
| 4481 | } | |
| 4482 | } | |
| 4483 | { | |
| 4484 | if (true) { | |
| 4485 | throw (Error) jjte000; | |
| 4486 | } | |
| 4487 | } | |
| 4488 | } finally { | |
| 4489 |
6
1. ArrayDimsAndInits : negated conditional → SURVIVED 2. ArrayDimsAndInits : removed conditional - replaced equality check with false → SURVIVED 3. ArrayDimsAndInits : removed conditional - replaced equality check with false → SURVIVED 4. ArrayDimsAndInits : removed conditional - replaced equality check with true → SURVIVED 5. ArrayDimsAndInits : negated conditional → KILLED 6. ArrayDimsAndInits : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4490 |
4
1. ArrayDimsAndInits : Substituted 1 with 0 → SURVIVED 2. ArrayDimsAndInits : Substituted 1 with 0 → SURVIVED 3. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ArrayDimsAndInits : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4491 | } | |
| 4492 | } | |
| 4493 | } | |
| 4494 | ||
| 4495 | /* | |
| 4496 | * Statement syntax follows. | |
| 4497 | */ | |
| 4498 | final public void Statement() throws ParseException { | |
| 4499 | /*@bgen(jjtree) Statement */ | |
| 4500 |
2
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. Statement : Substituted 70 with 71 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSTATEMENT); |
| 4501 |
1
1. Statement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4502 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4503 | try { | |
| 4504 |
5
1. Statement : Substituted 2 with 3 → SURVIVED 2. Statement : negated conditional → SURVIVED 3. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_33 → SURVIVED 4. Statement : removed conditional - replaced equality check with false → SURVIVED 5. Statement : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_33(2)) { |
| 4505 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::LabeledStatement → NO_COVERAGE |
LabeledStatement(); |
| 4506 | } else { | |
| 4507 |
93
1. Statement : Substituted -1 with 0 → SURVIVED 2. Statement : negated conditional → SURVIVED 3. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. Statement : removed conditional - replaced equality check with false → SURVIVED 5. Statement : removed conditional - replaced equality check with true → SURVIVED 6. Statement : RemoveSwitch 0 mutation → SURVIVED 7. Statement : RemoveSwitch 1 mutation → SURVIVED 8. Statement : RemoveSwitch 10 mutation → SURVIVED 9. Statement : RemoveSwitch 11 mutation → SURVIVED 10. Statement : RemoveSwitch 12 mutation → SURVIVED 11. Statement : RemoveSwitch 13 mutation → SURVIVED 12. Statement : RemoveSwitch 14 mutation → SURVIVED 13. Statement : RemoveSwitch 15 mutation → SURVIVED 14. Statement : RemoveSwitch 16 mutation → SURVIVED 15. Statement : RemoveSwitch 17 mutation → SURVIVED 16. Statement : RemoveSwitch 18 mutation → SURVIVED 17. Statement : RemoveSwitch 19 mutation → SURVIVED 18. Statement : RemoveSwitch 2 mutation → SURVIVED 19. Statement : RemoveSwitch 20 mutation → SURVIVED 20. Statement : RemoveSwitch 21 mutation → SURVIVED 21. Statement : RemoveSwitch 22 mutation → SURVIVED 22. Statement : RemoveSwitch 23 mutation → SURVIVED 23. Statement : RemoveSwitch 24 mutation → SURVIVED 24. Statement : RemoveSwitch 25 mutation → SURVIVED 25. Statement : RemoveSwitch 26 mutation → SURVIVED 26. Statement : RemoveSwitch 27 mutation → SURVIVED 27. Statement : RemoveSwitch 28 mutation → SURVIVED 28. Statement : RemoveSwitch 29 mutation → SURVIVED 29. Statement : RemoveSwitch 3 mutation → SURVIVED 30. Statement : RemoveSwitch 30 mutation → SURVIVED 31. Statement : RemoveSwitch 31 mutation → SURVIVED 32. Statement : RemoveSwitch 32 mutation → SURVIVED 33. Statement : RemoveSwitch 33 mutation → SURVIVED 34. Statement : RemoveSwitch 34 mutation → SURVIVED 35. Statement : RemoveSwitch 35 mutation → SURVIVED 36. Statement : RemoveSwitch 36 mutation → SURVIVED 37. Statement : RemoveSwitch 37 mutation → SURVIVED 38. Statement : RemoveSwitch 38 mutation → SURVIVED 39. Statement : RemoveSwitch 39 mutation → SURVIVED 40. Statement : RemoveSwitch 4 mutation → SURVIVED 41. Statement : RemoveSwitch 40 mutation → SURVIVED 42. Statement : RemoveSwitch 41 mutation → SURVIVED 43. Statement : RemoveSwitch 42 mutation → SURVIVED 44. Statement : RemoveSwitch 43 mutation → SURVIVED 45. Statement : RemoveSwitch 44 mutation → SURVIVED 46. Statement : RemoveSwitch 45 mutation → SURVIVED 47. Statement : RemoveSwitch 46 mutation → SURVIVED 48. Statement : RemoveSwitch 47 mutation → SURVIVED 49. Statement : RemoveSwitch 48 mutation → SURVIVED 50. Statement : RemoveSwitch 49 mutation → SURVIVED 51. Statement : RemoveSwitch 5 mutation → SURVIVED 52. Statement : RemoveSwitch 50 mutation → SURVIVED 53. Statement : RemoveSwitch 51 mutation → SURVIVED 54. Statement : RemoveSwitch 52 mutation → SURVIVED 55. Statement : RemoveSwitch 53 mutation → SURVIVED 56. Statement : RemoveSwitch 54 mutation → SURVIVED 57. Statement : RemoveSwitch 55 mutation → SURVIVED 58. Statement : RemoveSwitch 56 mutation → SURVIVED 59. Statement : RemoveSwitch 57 mutation → SURVIVED 60. Statement : RemoveSwitch 58 mutation → SURVIVED 61. Statement : RemoveSwitch 59 mutation → SURVIVED 62. Statement : RemoveSwitch 6 mutation → SURVIVED 63. Statement : RemoveSwitch 60 mutation → SURVIVED 64. Statement : RemoveSwitch 61 mutation → SURVIVED 65. Statement : RemoveSwitch 62 mutation → SURVIVED 66. Statement : RemoveSwitch 63 mutation → SURVIVED 67. Statement : RemoveSwitch 64 mutation → SURVIVED 68. Statement : RemoveSwitch 65 mutation → SURVIVED 69. Statement : RemoveSwitch 66 mutation → SURVIVED 70. Statement : RemoveSwitch 67 mutation → SURVIVED 71. Statement : RemoveSwitch 68 mutation → SURVIVED 72. Statement : RemoveSwitch 69 mutation → SURVIVED 73. Statement : RemoveSwitch 7 mutation → SURVIVED 74. Statement : RemoveSwitch 70 mutation → SURVIVED 75. Statement : RemoveSwitch 71 mutation → SURVIVED 76. Statement : RemoveSwitch 72 mutation → SURVIVED 77. Statement : RemoveSwitch 73 mutation → SURVIVED 78. Statement : RemoveSwitch 74 mutation → SURVIVED 79. Statement : RemoveSwitch 75 mutation → SURVIVED 80. Statement : RemoveSwitch 76 mutation → SURVIVED 81. Statement : RemoveSwitch 77 mutation → SURVIVED 82. Statement : RemoveSwitch 78 mutation → SURVIVED 83. Statement : RemoveSwitch 79 mutation → SURVIVED 84. Statement : RemoveSwitch 8 mutation → SURVIVED 85. Statement : RemoveSwitch 80 mutation → SURVIVED 86. Statement : RemoveSwitch 81 mutation → SURVIVED 87. Statement : RemoveSwitch 82 mutation → SURVIVED 88. Statement : RemoveSwitch 83 mutation → SURVIVED 89. Statement : RemoveSwitch 84 mutation → SURVIVED 90. Statement : RemoveSwitch 85 mutation → SURVIVED 91. Statement : RemoveSwitch 86 mutation → SURVIVED 92. Statement : RemoveSwitch 9 mutation → SURVIVED 93. Statement : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4508 | case ASSERT: | |
| 4509 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AssertStatement → NO_COVERAGE |
AssertStatement(); |
| 4510 | break; | |
| 4511 | case LBRACE: | |
| 4512 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Block → NO_COVERAGE |
Block(); |
| 4513 | break; | |
| 4514 | case SEMICOLON: | |
| 4515 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EmptyStatement → NO_COVERAGE |
EmptyStatement(); |
| 4516 | break; | |
| 4517 | case BOOLEAN: | |
| 4518 | case BYTE: | |
| 4519 | case CHAR: | |
| 4520 | case DOUBLE: | |
| 4521 | case FALSE: | |
| 4522 | case FLOAT: | |
| 4523 | case INT: | |
| 4524 | case LONG: | |
| 4525 | case NEW: | |
| 4526 | case NULL: | |
| 4527 | case SHORT: | |
| 4528 | case SUPER: | |
| 4529 | case THIS: | |
| 4530 | case TRUE: | |
| 4531 | case VOID: | |
| 4532 | case INTEGER_LITERAL: | |
| 4533 | case FLOATING_POINT_LITERAL: | |
| 4534 | case CHARACTER_LITERAL: | |
| 4535 | case STRING_LITERAL: | |
| 4536 | case IDENTIFIER: | |
| 4537 | case LPAREN: | |
| 4538 | case INCR: | |
| 4539 | case DECR: | |
| 4540 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::StatementExpression → NO_COVERAGE |
StatementExpression(); |
| 4541 |
2
1. Statement : Substituted 83 with 84 → NO_COVERAGE 2. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 4542 | break; | |
| 4543 | case SWITCH: | |
| 4544 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::SwitchStatement → NO_COVERAGE |
SwitchStatement(); |
| 4545 | break; | |
| 4546 | case IF: | |
| 4547 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::IfStatement → NO_COVERAGE |
IfStatement(); |
| 4548 | break; | |
| 4549 | case WHILE: | |
| 4550 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::WhileStatement → NO_COVERAGE |
WhileStatement(); |
| 4551 | break; | |
| 4552 | case DO: | |
| 4553 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::DoStatement → NO_COVERAGE |
DoStatement(); |
| 4554 | break; | |
| 4555 | case FOR: | |
| 4556 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ForStatement → NO_COVERAGE |
ForStatement(); |
| 4557 | break; | |
| 4558 | case BREAK: | |
| 4559 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::BreakStatement → NO_COVERAGE |
BreakStatement(); |
| 4560 | break; | |
| 4561 | case CONTINUE: | |
| 4562 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ContinueStatement → NO_COVERAGE |
ContinueStatement(); |
| 4563 | break; | |
| 4564 | case RETURN: | |
| 4565 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ReturnStatement → NO_COVERAGE |
ReturnStatement(); |
| 4566 | break; | |
| 4567 | case THROW: | |
| 4568 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ThrowStatement → NO_COVERAGE |
ThrowStatement(); |
| 4569 | break; | |
| 4570 | case SYNCHRONIZED: | |
| 4571 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::SynchronizedStatement → NO_COVERAGE |
SynchronizedStatement(); |
| 4572 | break; | |
| 4573 | case TRY: | |
| 4574 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::TryStatement → NO_COVERAGE |
TryStatement(); |
| 4575 | break; | |
| 4576 | default: | |
| 4577 |
2
1. Statement : Substituted -1 with 0 → SURVIVED 2. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 4578 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 4579 | } | |
| 4580 | } | |
| 4581 | } catch (Throwable jjte000) { | |
| 4582 |
3
1. Statement : removed conditional - replaced equality check with true → SURVIVED 2. Statement : negated conditional → KILLED 3. Statement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4583 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4584 |
1
1. Statement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4585 | } else { | |
| 4586 |
1
1. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4587 | } | |
| 4588 |
3
1. Statement : negated conditional → SURVIVED 2. Statement : removed conditional - replaced equality check with false → SURVIVED 3. Statement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4589 | { | |
| 4590 | if (true) { | |
| 4591 | throw (RuntimeException) jjte000; | |
| 4592 | } | |
| 4593 | } | |
| 4594 | } | |
| 4595 |
3
1. Statement : negated conditional → SURVIVED 2. Statement : removed conditional - replaced equality check with false → SURVIVED 3. Statement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4596 | { | |
| 4597 | if (true) { | |
| 4598 | throw (ParseException) jjte000; | |
| 4599 | } | |
| 4600 | } | |
| 4601 | } | |
| 4602 | { | |
| 4603 | if (true) { | |
| 4604 | throw (Error) jjte000; | |
| 4605 | } | |
| 4606 | } | |
| 4607 | } finally { | |
| 4608 |
6
1. Statement : negated conditional → SURVIVED 2. Statement : removed conditional - replaced equality check with false → SURVIVED 3. Statement : removed conditional - replaced equality check with false → SURVIVED 4. Statement : removed conditional - replaced equality check with true → SURVIVED 5. Statement : negated conditional → KILLED 6. Statement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4609 |
4
1. Statement : Substituted 1 with 0 → SURVIVED 2. Statement : Substituted 1 with 0 → SURVIVED 3. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Statement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4610 | } | |
| 4611 | } | |
| 4612 | } | |
| 4613 | ||
| 4614 | final public void AssertStatement() throws ParseException { | |
| 4615 | /*@bgen(jjtree) AssertStatement */ | |
| 4616 |
2
1. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. AssertStatement : Substituted 71 with 72 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTASSERTSTATEMENT); |
| 4617 |
1
1. AssertStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4618 |
1
1. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4619 | try { | |
| 4620 |
2
1. AssertStatement : Substituted 14 with 15 → SURVIVED 2. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(ASSERT); |
| 4621 |
1
1. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 4622 |
7
1. AssertStatement : Substituted -1 with 0 → SURVIVED 2. AssertStatement : negated conditional → SURVIVED 3. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. AssertStatement : removed conditional - replaced equality check with false → SURVIVED 5. AssertStatement : removed conditional - replaced equality check with true → SURVIVED 6. AssertStatement : RemoveSwitch 0 mutation → SURVIVED 7. AssertStatement : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4623 | case COLON: | |
| 4624 |
2
1. AssertStatement : Substituted 92 with 93 → NO_COVERAGE 2. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COLON); |
| 4625 |
1
1. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 4626 | break; | |
| 4627 | default: | |
| 4628 | ; | |
| 4629 | } | |
| 4630 |
2
1. AssertStatement : Substituted 83 with 84 → NO_COVERAGE 2. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 4631 | } catch (Throwable jjte000) { | |
| 4632 |
3
1. AssertStatement : removed conditional - replaced equality check with true → SURVIVED 2. AssertStatement : negated conditional → KILLED 3. AssertStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4633 |
1
1. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4634 |
1
1. AssertStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4635 | } else { | |
| 4636 |
1
1. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4637 | } | |
| 4638 |
3
1. AssertStatement : negated conditional → SURVIVED 2. AssertStatement : removed conditional - replaced equality check with false → SURVIVED 3. AssertStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4639 | { | |
| 4640 | if (true) { | |
| 4641 | throw (RuntimeException) jjte000; | |
| 4642 | } | |
| 4643 | } | |
| 4644 | } | |
| 4645 |
3
1. AssertStatement : negated conditional → SURVIVED 2. AssertStatement : removed conditional - replaced equality check with false → SURVIVED 3. AssertStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4646 | { | |
| 4647 | if (true) { | |
| 4648 | throw (ParseException) jjte000; | |
| 4649 | } | |
| 4650 | } | |
| 4651 | } | |
| 4652 | { | |
| 4653 | if (true) { | |
| 4654 | throw (Error) jjte000; | |
| 4655 | } | |
| 4656 | } | |
| 4657 | } finally { | |
| 4658 |
6
1. AssertStatement : negated conditional → SURVIVED 2. AssertStatement : removed conditional - replaced equality check with false → SURVIVED 3. AssertStatement : removed conditional - replaced equality check with false → SURVIVED 4. AssertStatement : removed conditional - replaced equality check with true → SURVIVED 5. AssertStatement : negated conditional → KILLED 6. AssertStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4659 |
4
1. AssertStatement : Substituted 1 with 0 → SURVIVED 2. AssertStatement : Substituted 1 with 0 → SURVIVED 3. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. AssertStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4660 | } | |
| 4661 | } | |
| 4662 | } | |
| 4663 | ||
| 4664 | final public void LabeledStatement() throws ParseException { | |
| 4665 | /*@bgen(jjtree) LabeledStatement */ | |
| 4666 |
2
1. LabeledStatement : Substituted 72 with 73 → SURVIVED 2. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTLABELEDSTATEMENT); |
| 4667 |
1
1. LabeledStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4668 |
1
1. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4669 | try { | |
| 4670 |
2
1. LabeledStatement : Substituted 74 with 75 → SURVIVED 2. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IDENTIFIER); |
| 4671 |
2
1. LabeledStatement : Substituted 92 with 93 → SURVIVED 2. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(COLON); |
| 4672 |
1
1. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Statement → SURVIVED |
Statement(); |
| 4673 | } catch (Throwable jjte000) { | |
| 4674 |
3
1. LabeledStatement : removed conditional - replaced equality check with true → SURVIVED 2. LabeledStatement : negated conditional → KILLED 3. LabeledStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4675 |
1
1. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4676 |
1
1. LabeledStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4677 | } else { | |
| 4678 |
1
1. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4679 | } | |
| 4680 |
3
1. LabeledStatement : negated conditional → SURVIVED 2. LabeledStatement : removed conditional - replaced equality check with false → SURVIVED 3. LabeledStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4681 | { | |
| 4682 | if (true) { | |
| 4683 | throw (RuntimeException) jjte000; | |
| 4684 | } | |
| 4685 | } | |
| 4686 | } | |
| 4687 |
3
1. LabeledStatement : negated conditional → SURVIVED 2. LabeledStatement : removed conditional - replaced equality check with false → SURVIVED 3. LabeledStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4688 | { | |
| 4689 | if (true) { | |
| 4690 | throw (ParseException) jjte000; | |
| 4691 | } | |
| 4692 | } | |
| 4693 | } | |
| 4694 | { | |
| 4695 | if (true) { | |
| 4696 | throw (Error) jjte000; | |
| 4697 | } | |
| 4698 | } | |
| 4699 | } finally { | |
| 4700 |
6
1. LabeledStatement : negated conditional → SURVIVED 2. LabeledStatement : removed conditional - replaced equality check with false → SURVIVED 3. LabeledStatement : removed conditional - replaced equality check with false → SURVIVED 4. LabeledStatement : removed conditional - replaced equality check with true → SURVIVED 5. LabeledStatement : negated conditional → KILLED 6. LabeledStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4701 |
4
1. LabeledStatement : Substituted 1 with 0 → SURVIVED 2. LabeledStatement : Substituted 1 with 0 → SURVIVED 3. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. LabeledStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4702 | } | |
| 4703 | } | |
| 4704 | } | |
| 4705 | ||
| 4706 | final public void Block() throws ParseException { | |
| 4707 | /*@bgen(jjtree) Block */ | |
| 4708 |
2
1. Block : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. Block : Substituted 73 with 74 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTBLOCK); |
| 4709 |
1
1. Block : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4710 |
1
1. Block : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4711 | try { | |
| 4712 |
2
1. Block : Substituted 79 with 80 → SURVIVED 2. Block : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LBRACE); |
| 4713 | label_38:while (true) { | |
| 4714 |
93
1. Block : Substituted -1 with 0 → NO_COVERAGE 2. Block : negated conditional → NO_COVERAGE 3. Block : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. Block : removed conditional - replaced equality check with false → NO_COVERAGE 5. Block : removed conditional - replaced equality check with true → NO_COVERAGE 6. Block : RemoveSwitch 0 mutation → NO_COVERAGE 7. Block : RemoveSwitch 1 mutation → NO_COVERAGE 8. Block : RemoveSwitch 10 mutation → NO_COVERAGE 9. Block : RemoveSwitch 11 mutation → NO_COVERAGE 10. Block : RemoveSwitch 12 mutation → NO_COVERAGE 11. Block : RemoveSwitch 13 mutation → NO_COVERAGE 12. Block : RemoveSwitch 14 mutation → NO_COVERAGE 13. Block : RemoveSwitch 15 mutation → NO_COVERAGE 14. Block : RemoveSwitch 16 mutation → NO_COVERAGE 15. Block : RemoveSwitch 17 mutation → NO_COVERAGE 16. Block : RemoveSwitch 18 mutation → NO_COVERAGE 17. Block : RemoveSwitch 19 mutation → NO_COVERAGE 18. Block : RemoveSwitch 2 mutation → NO_COVERAGE 19. Block : RemoveSwitch 20 mutation → NO_COVERAGE 20. Block : RemoveSwitch 21 mutation → NO_COVERAGE 21. Block : RemoveSwitch 22 mutation → NO_COVERAGE 22. Block : RemoveSwitch 23 mutation → NO_COVERAGE 23. Block : RemoveSwitch 24 mutation → NO_COVERAGE 24. Block : RemoveSwitch 25 mutation → NO_COVERAGE 25. Block : RemoveSwitch 26 mutation → NO_COVERAGE 26. Block : RemoveSwitch 27 mutation → NO_COVERAGE 27. Block : RemoveSwitch 28 mutation → NO_COVERAGE 28. Block : RemoveSwitch 29 mutation → NO_COVERAGE 29. Block : RemoveSwitch 3 mutation → NO_COVERAGE 30. Block : RemoveSwitch 30 mutation → NO_COVERAGE 31. Block : RemoveSwitch 31 mutation → NO_COVERAGE 32. Block : RemoveSwitch 32 mutation → NO_COVERAGE 33. Block : RemoveSwitch 33 mutation → NO_COVERAGE 34. Block : RemoveSwitch 34 mutation → NO_COVERAGE 35. Block : RemoveSwitch 35 mutation → NO_COVERAGE 36. Block : RemoveSwitch 36 mutation → NO_COVERAGE 37. Block : RemoveSwitch 37 mutation → NO_COVERAGE 38. Block : RemoveSwitch 38 mutation → NO_COVERAGE 39. Block : RemoveSwitch 39 mutation → NO_COVERAGE 40. Block : RemoveSwitch 4 mutation → NO_COVERAGE 41. Block : RemoveSwitch 40 mutation → NO_COVERAGE 42. Block : RemoveSwitch 41 mutation → NO_COVERAGE 43. Block : RemoveSwitch 42 mutation → NO_COVERAGE 44. Block : RemoveSwitch 43 mutation → NO_COVERAGE 45. Block : RemoveSwitch 44 mutation → NO_COVERAGE 46. Block : RemoveSwitch 45 mutation → NO_COVERAGE 47. Block : RemoveSwitch 46 mutation → NO_COVERAGE 48. Block : RemoveSwitch 47 mutation → NO_COVERAGE 49. Block : RemoveSwitch 48 mutation → NO_COVERAGE 50. Block : RemoveSwitch 49 mutation → NO_COVERAGE 51. Block : RemoveSwitch 5 mutation → NO_COVERAGE 52. Block : RemoveSwitch 50 mutation → NO_COVERAGE 53. Block : RemoveSwitch 51 mutation → NO_COVERAGE 54. Block : RemoveSwitch 52 mutation → NO_COVERAGE 55. Block : RemoveSwitch 53 mutation → NO_COVERAGE 56. Block : RemoveSwitch 54 mutation → NO_COVERAGE 57. Block : RemoveSwitch 55 mutation → NO_COVERAGE 58. Block : RemoveSwitch 56 mutation → NO_COVERAGE 59. Block : RemoveSwitch 57 mutation → NO_COVERAGE 60. Block : RemoveSwitch 58 mutation → NO_COVERAGE 61. Block : RemoveSwitch 59 mutation → NO_COVERAGE 62. Block : RemoveSwitch 6 mutation → NO_COVERAGE 63. Block : RemoveSwitch 60 mutation → NO_COVERAGE 64. Block : RemoveSwitch 61 mutation → NO_COVERAGE 65. Block : RemoveSwitch 62 mutation → NO_COVERAGE 66. Block : RemoveSwitch 63 mutation → NO_COVERAGE 67. Block : RemoveSwitch 64 mutation → NO_COVERAGE 68. Block : RemoveSwitch 65 mutation → NO_COVERAGE 69. Block : RemoveSwitch 66 mutation → NO_COVERAGE 70. Block : RemoveSwitch 67 mutation → NO_COVERAGE 71. Block : RemoveSwitch 68 mutation → NO_COVERAGE 72. Block : RemoveSwitch 69 mutation → NO_COVERAGE 73. Block : RemoveSwitch 7 mutation → NO_COVERAGE 74. Block : RemoveSwitch 70 mutation → NO_COVERAGE 75. Block : RemoveSwitch 71 mutation → NO_COVERAGE 76. Block : RemoveSwitch 72 mutation → NO_COVERAGE 77. Block : RemoveSwitch 73 mutation → NO_COVERAGE 78. Block : RemoveSwitch 74 mutation → NO_COVERAGE 79. Block : RemoveSwitch 75 mutation → NO_COVERAGE 80. Block : RemoveSwitch 76 mutation → NO_COVERAGE 81. Block : RemoveSwitch 77 mutation → NO_COVERAGE 82. Block : RemoveSwitch 78 mutation → NO_COVERAGE 83. Block : RemoveSwitch 79 mutation → NO_COVERAGE 84. Block : RemoveSwitch 8 mutation → NO_COVERAGE 85. Block : RemoveSwitch 80 mutation → NO_COVERAGE 86. Block : RemoveSwitch 81 mutation → NO_COVERAGE 87. Block : RemoveSwitch 82 mutation → NO_COVERAGE 88. Block : RemoveSwitch 83 mutation → NO_COVERAGE 89. Block : RemoveSwitch 84 mutation → NO_COVERAGE 90. Block : RemoveSwitch 85 mutation → NO_COVERAGE 91. Block : RemoveSwitch 86 mutation → NO_COVERAGE 92. Block : RemoveSwitch 9 mutation → NO_COVERAGE 93. Block : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4715 | case ASSERT: | |
| 4716 | case BOOLEAN: | |
| 4717 | case BREAK: | |
| 4718 | case BYTE: | |
| 4719 | case CHAR: | |
| 4720 | case CLASS: | |
| 4721 | case CONTINUE: | |
| 4722 | case DO: | |
| 4723 | case DOUBLE: | |
| 4724 | case FALSE: | |
| 4725 | case FINAL: | |
| 4726 | case FLOAT: | |
| 4727 | case FOR: | |
| 4728 | case IF: | |
| 4729 | case INT: | |
| 4730 | case INTERFACE: | |
| 4731 | case LONG: | |
| 4732 | case NEW: | |
| 4733 | case NULL: | |
| 4734 | case RETURN: | |
| 4735 | case SHORT: | |
| 4736 | case SUPER: | |
| 4737 | case SWITCH: | |
| 4738 | case SYNCHRONIZED: | |
| 4739 | case THIS: | |
| 4740 | case THROW: | |
| 4741 | case TRUE: | |
| 4742 | case TRY: | |
| 4743 | case VOID: | |
| 4744 | case WHILE: | |
| 4745 | case INTEGER_LITERAL: | |
| 4746 | case FLOATING_POINT_LITERAL: | |
| 4747 | case CHARACTER_LITERAL: | |
| 4748 | case STRING_LITERAL: | |
| 4749 | case IDENTIFIER: | |
| 4750 | case LPAREN: | |
| 4751 | case LBRACE: | |
| 4752 | case SEMICOLON: | |
| 4753 | case INCR: | |
| 4754 | case DECR: | |
| 4755 | ; | |
| 4756 | break; | |
| 4757 | default: | |
| 4758 | break label_38; | |
| 4759 | } | |
| 4760 |
1
1. Block : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::BlockStatement → NO_COVERAGE |
BlockStatement(); |
| 4761 | } | |
| 4762 |
2
1. Block : Substituted 80 with 81 → NO_COVERAGE 2. Block : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 4763 | } catch (Throwable jjte000) { | |
| 4764 |
3
1. Block : removed conditional - replaced equality check with true → SURVIVED 2. Block : negated conditional → KILLED 3. Block : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4765 |
1
1. Block : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4766 |
1
1. Block : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4767 | } else { | |
| 4768 |
1
1. Block : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4769 | } | |
| 4770 |
3
1. Block : negated conditional → SURVIVED 2. Block : removed conditional - replaced equality check with false → SURVIVED 3. Block : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4771 | { | |
| 4772 | if (true) { | |
| 4773 | throw (RuntimeException) jjte000; | |
| 4774 | } | |
| 4775 | } | |
| 4776 | } | |
| 4777 |
3
1. Block : negated conditional → SURVIVED 2. Block : removed conditional - replaced equality check with false → SURVIVED 3. Block : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4778 | { | |
| 4779 | if (true) { | |
| 4780 | throw (ParseException) jjte000; | |
| 4781 | } | |
| 4782 | } | |
| 4783 | } | |
| 4784 | { | |
| 4785 | if (true) { | |
| 4786 | throw (Error) jjte000; | |
| 4787 | } | |
| 4788 | } | |
| 4789 | } finally { | |
| 4790 |
6
1. Block : negated conditional → SURVIVED 2. Block : removed conditional - replaced equality check with false → SURVIVED 3. Block : removed conditional - replaced equality check with false → SURVIVED 4. Block : removed conditional - replaced equality check with true → SURVIVED 5. Block : negated conditional → KILLED 6. Block : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4791 |
4
1. Block : Substituted 1 with 0 → SURVIVED 2. Block : Substituted 1 with 0 → SURVIVED 3. Block : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. Block : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4792 | } | |
| 4793 | } | |
| 4794 | } | |
| 4795 | ||
| 4796 | final public void BlockStatement() throws ParseException { | |
| 4797 | /*@bgen(jjtree) BlockStatement */ | |
| 4798 |
2
1. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. BlockStatement : Substituted 74 with 75 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTBLOCKSTATEMENT); |
| 4799 |
1
1. BlockStatement : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 4800 |
1
1. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 4801 | try { | |
| 4802 |
5
1. BlockStatement : Substituted 2147483647 with -2147483648 → NO_COVERAGE 2. BlockStatement : negated conditional → NO_COVERAGE 3. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_34 → NO_COVERAGE 4. BlockStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. BlockStatement : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_34(2147483647)) { |
| 4803 |
1
1. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::LocalVariableDeclaration → NO_COVERAGE |
LocalVariableDeclaration(); |
| 4804 |
2
1. BlockStatement : Substituted 83 with 84 → NO_COVERAGE 2. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 4805 | } else { | |
| 4806 |
93
1. BlockStatement : Substituted -1 with 0 → NO_COVERAGE 2. BlockStatement : negated conditional → NO_COVERAGE 3. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. BlockStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. BlockStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. BlockStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. BlockStatement : RemoveSwitch 1 mutation → NO_COVERAGE 8. BlockStatement : RemoveSwitch 10 mutation → NO_COVERAGE 9. BlockStatement : RemoveSwitch 11 mutation → NO_COVERAGE 10. BlockStatement : RemoveSwitch 12 mutation → NO_COVERAGE 11. BlockStatement : RemoveSwitch 13 mutation → NO_COVERAGE 12. BlockStatement : RemoveSwitch 14 mutation → NO_COVERAGE 13. BlockStatement : RemoveSwitch 15 mutation → NO_COVERAGE 14. BlockStatement : RemoveSwitch 16 mutation → NO_COVERAGE 15. BlockStatement : RemoveSwitch 17 mutation → NO_COVERAGE 16. BlockStatement : RemoveSwitch 18 mutation → NO_COVERAGE 17. BlockStatement : RemoveSwitch 19 mutation → NO_COVERAGE 18. BlockStatement : RemoveSwitch 2 mutation → NO_COVERAGE 19. BlockStatement : RemoveSwitch 20 mutation → NO_COVERAGE 20. BlockStatement : RemoveSwitch 21 mutation → NO_COVERAGE 21. BlockStatement : RemoveSwitch 22 mutation → NO_COVERAGE 22. BlockStatement : RemoveSwitch 23 mutation → NO_COVERAGE 23. BlockStatement : RemoveSwitch 24 mutation → NO_COVERAGE 24. BlockStatement : RemoveSwitch 25 mutation → NO_COVERAGE 25. BlockStatement : RemoveSwitch 26 mutation → NO_COVERAGE 26. BlockStatement : RemoveSwitch 27 mutation → NO_COVERAGE 27. BlockStatement : RemoveSwitch 28 mutation → NO_COVERAGE 28. BlockStatement : RemoveSwitch 29 mutation → NO_COVERAGE 29. BlockStatement : RemoveSwitch 3 mutation → NO_COVERAGE 30. BlockStatement : RemoveSwitch 30 mutation → NO_COVERAGE 31. BlockStatement : RemoveSwitch 31 mutation → NO_COVERAGE 32. BlockStatement : RemoveSwitch 32 mutation → NO_COVERAGE 33. BlockStatement : RemoveSwitch 33 mutation → NO_COVERAGE 34. BlockStatement : RemoveSwitch 34 mutation → NO_COVERAGE 35. BlockStatement : RemoveSwitch 35 mutation → NO_COVERAGE 36. BlockStatement : RemoveSwitch 36 mutation → NO_COVERAGE 37. BlockStatement : RemoveSwitch 37 mutation → NO_COVERAGE 38. BlockStatement : RemoveSwitch 38 mutation → NO_COVERAGE 39. BlockStatement : RemoveSwitch 39 mutation → NO_COVERAGE 40. BlockStatement : RemoveSwitch 4 mutation → NO_COVERAGE 41. BlockStatement : RemoveSwitch 40 mutation → NO_COVERAGE 42. BlockStatement : RemoveSwitch 41 mutation → NO_COVERAGE 43. BlockStatement : RemoveSwitch 42 mutation → NO_COVERAGE 44. BlockStatement : RemoveSwitch 43 mutation → NO_COVERAGE 45. BlockStatement : RemoveSwitch 44 mutation → NO_COVERAGE 46. BlockStatement : RemoveSwitch 45 mutation → NO_COVERAGE 47. BlockStatement : RemoveSwitch 46 mutation → NO_COVERAGE 48. BlockStatement : RemoveSwitch 47 mutation → NO_COVERAGE 49. BlockStatement : RemoveSwitch 48 mutation → NO_COVERAGE 50. BlockStatement : RemoveSwitch 49 mutation → NO_COVERAGE 51. BlockStatement : RemoveSwitch 5 mutation → NO_COVERAGE 52. BlockStatement : RemoveSwitch 50 mutation → NO_COVERAGE 53. BlockStatement : RemoveSwitch 51 mutation → NO_COVERAGE 54. BlockStatement : RemoveSwitch 52 mutation → NO_COVERAGE 55. BlockStatement : RemoveSwitch 53 mutation → NO_COVERAGE 56. BlockStatement : RemoveSwitch 54 mutation → NO_COVERAGE 57. BlockStatement : RemoveSwitch 55 mutation → NO_COVERAGE 58. BlockStatement : RemoveSwitch 56 mutation → NO_COVERAGE 59. BlockStatement : RemoveSwitch 57 mutation → NO_COVERAGE 60. BlockStatement : RemoveSwitch 58 mutation → NO_COVERAGE 61. BlockStatement : RemoveSwitch 59 mutation → NO_COVERAGE 62. BlockStatement : RemoveSwitch 6 mutation → NO_COVERAGE 63. BlockStatement : RemoveSwitch 60 mutation → NO_COVERAGE 64. BlockStatement : RemoveSwitch 61 mutation → NO_COVERAGE 65. BlockStatement : RemoveSwitch 62 mutation → NO_COVERAGE 66. BlockStatement : RemoveSwitch 63 mutation → NO_COVERAGE 67. BlockStatement : RemoveSwitch 64 mutation → NO_COVERAGE 68. BlockStatement : RemoveSwitch 65 mutation → NO_COVERAGE 69. BlockStatement : RemoveSwitch 66 mutation → NO_COVERAGE 70. BlockStatement : RemoveSwitch 67 mutation → NO_COVERAGE 71. BlockStatement : RemoveSwitch 68 mutation → NO_COVERAGE 72. BlockStatement : RemoveSwitch 69 mutation → NO_COVERAGE 73. BlockStatement : RemoveSwitch 7 mutation → NO_COVERAGE 74. BlockStatement : RemoveSwitch 70 mutation → NO_COVERAGE 75. BlockStatement : RemoveSwitch 71 mutation → NO_COVERAGE 76. BlockStatement : RemoveSwitch 72 mutation → NO_COVERAGE 77. BlockStatement : RemoveSwitch 73 mutation → NO_COVERAGE 78. BlockStatement : RemoveSwitch 74 mutation → NO_COVERAGE 79. BlockStatement : RemoveSwitch 75 mutation → NO_COVERAGE 80. BlockStatement : RemoveSwitch 76 mutation → NO_COVERAGE 81. BlockStatement : RemoveSwitch 77 mutation → NO_COVERAGE 82. BlockStatement : RemoveSwitch 78 mutation → NO_COVERAGE 83. BlockStatement : RemoveSwitch 79 mutation → NO_COVERAGE 84. BlockStatement : RemoveSwitch 8 mutation → NO_COVERAGE 85. BlockStatement : RemoveSwitch 80 mutation → NO_COVERAGE 86. BlockStatement : RemoveSwitch 81 mutation → NO_COVERAGE 87. BlockStatement : RemoveSwitch 82 mutation → NO_COVERAGE 88. BlockStatement : RemoveSwitch 83 mutation → NO_COVERAGE 89. BlockStatement : RemoveSwitch 84 mutation → NO_COVERAGE 90. BlockStatement : RemoveSwitch 85 mutation → NO_COVERAGE 91. BlockStatement : RemoveSwitch 86 mutation → NO_COVERAGE 92. BlockStatement : RemoveSwitch 9 mutation → NO_COVERAGE 93. BlockStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4807 | case ASSERT: | |
| 4808 | case BOOLEAN: | |
| 4809 | case BREAK: | |
| 4810 | case BYTE: | |
| 4811 | case CHAR: | |
| 4812 | case CONTINUE: | |
| 4813 | case DO: | |
| 4814 | case DOUBLE: | |
| 4815 | case FALSE: | |
| 4816 | case FLOAT: | |
| 4817 | case FOR: | |
| 4818 | case IF: | |
| 4819 | case INT: | |
| 4820 | case LONG: | |
| 4821 | case NEW: | |
| 4822 | case NULL: | |
| 4823 | case RETURN: | |
| 4824 | case SHORT: | |
| 4825 | case SUPER: | |
| 4826 | case SWITCH: | |
| 4827 | case SYNCHRONIZED: | |
| 4828 | case THIS: | |
| 4829 | case THROW: | |
| 4830 | case TRUE: | |
| 4831 | case TRY: | |
| 4832 | case VOID: | |
| 4833 | case WHILE: | |
| 4834 | case INTEGER_LITERAL: | |
| 4835 | case FLOATING_POINT_LITERAL: | |
| 4836 | case CHARACTER_LITERAL: | |
| 4837 | case STRING_LITERAL: | |
| 4838 | case IDENTIFIER: | |
| 4839 | case LPAREN: | |
| 4840 | case LBRACE: | |
| 4841 | case SEMICOLON: | |
| 4842 | case INCR: | |
| 4843 | case DECR: | |
| 4844 |
1
1. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Statement → NO_COVERAGE |
Statement(); |
| 4845 | break; | |
| 4846 | case CLASS: | |
| 4847 | case INTERFACE: | |
| 4848 |
2
1. BlockStatement : Substituted 0 with 1 → NO_COVERAGE 2. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceDeclaration → NO_COVERAGE |
ClassOrInterfaceDeclaration(0); |
| 4849 | break; | |
| 4850 | default: | |
| 4851 |
2
1. BlockStatement : Substituted -1 with 0 → NO_COVERAGE 2. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 4852 |
1
1. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 4853 | } | |
| 4854 | } | |
| 4855 | } catch (Throwable jjte000) { | |
| 4856 |
3
1. BlockStatement : negated conditional → NO_COVERAGE 2. BlockStatement : removed conditional - replaced equality check with false → NO_COVERAGE 3. BlockStatement : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 4857 |
1
1. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 4858 |
1
1. BlockStatement : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 4859 | } else { | |
| 4860 |
1
1. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4861 | } | |
| 4862 |
3
1. BlockStatement : negated conditional → NO_COVERAGE 2. BlockStatement : removed conditional - replaced equality check with false → NO_COVERAGE 3. BlockStatement : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 4863 | { | |
| 4864 | if (true) { | |
| 4865 | throw (RuntimeException) jjte000; | |
| 4866 | } | |
| 4867 | } | |
| 4868 | } | |
| 4869 |
3
1. BlockStatement : negated conditional → NO_COVERAGE 2. BlockStatement : removed conditional - replaced equality check with false → NO_COVERAGE 3. BlockStatement : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 4870 | { | |
| 4871 | if (true) { | |
| 4872 | throw (ParseException) jjte000; | |
| 4873 | } | |
| 4874 | } | |
| 4875 | } | |
| 4876 | { | |
| 4877 | if (true) { | |
| 4878 | throw (Error) jjte000; | |
| 4879 | } | |
| 4880 | } | |
| 4881 | } finally { | |
| 4882 |
6
1. BlockStatement : negated conditional → NO_COVERAGE 2. BlockStatement : negated conditional → NO_COVERAGE 3. BlockStatement : removed conditional - replaced equality check with false → NO_COVERAGE 4. BlockStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. BlockStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. BlockStatement : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 4883 |
4
1. BlockStatement : Substituted 1 with 0 → NO_COVERAGE 2. BlockStatement : Substituted 1 with 0 → NO_COVERAGE 3. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. BlockStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 4884 | } | |
| 4885 | } | |
| 4886 | } | |
| 4887 | ||
| 4888 | final public void LocalVariableDeclaration() throws ParseException { | |
| 4889 | /*@bgen(jjtree) LocalVariableDeclaration */ | |
| 4890 |
2
1. LocalVariableDeclaration : Substituted 75 with 76 → SURVIVED 2. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTLOCALVARIABLEDECLARATION); |
| 4891 |
1
1. LocalVariableDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4892 |
1
1. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4893 | try { | |
| 4894 |
7
1. LocalVariableDeclaration : Substituted -1 with 0 → SURVIVED 2. LocalVariableDeclaration : negated conditional → SURVIVED 3. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. LocalVariableDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. LocalVariableDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. LocalVariableDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. LocalVariableDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4895 | case FINAL: | |
| 4896 |
2
1. LocalVariableDeclaration : Substituted 31 with 32 → NO_COVERAGE 2. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(FINAL); |
| 4897 | break; | |
| 4898 | default: | |
| 4899 | ; | |
| 4900 | } | |
| 4901 |
1
1. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → SURVIVED |
Type(); |
| 4902 |
1
1. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableDeclarator → SURVIVED |
VariableDeclarator(); |
| 4903 | label_39:while (true) { | |
| 4904 |
7
1. LocalVariableDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. LocalVariableDeclaration : negated conditional → NO_COVERAGE 3. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. LocalVariableDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. LocalVariableDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. LocalVariableDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. LocalVariableDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4905 | case COMMA: | |
| 4906 | ; | |
| 4907 | break; | |
| 4908 | default: | |
| 4909 | break label_39; | |
| 4910 | } | |
| 4911 |
2
1. LocalVariableDeclaration : Substituted 84 with 85 → NO_COVERAGE 2. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 4912 |
1
1. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::VariableDeclarator → NO_COVERAGE |
VariableDeclarator(); |
| 4913 | } | |
| 4914 | } catch (Throwable jjte000) { | |
| 4915 |
3
1. LocalVariableDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. LocalVariableDeclaration : negated conditional → KILLED 3. LocalVariableDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 4916 |
1
1. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 4917 |
1
1. LocalVariableDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 4918 | } else { | |
| 4919 |
1
1. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 4920 | } | |
| 4921 |
3
1. LocalVariableDeclaration : negated conditional → SURVIVED 2. LocalVariableDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. LocalVariableDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 4922 | { | |
| 4923 | if (true) { | |
| 4924 | throw (RuntimeException) jjte000; | |
| 4925 | } | |
| 4926 | } | |
| 4927 | } | |
| 4928 |
3
1. LocalVariableDeclaration : negated conditional → SURVIVED 2. LocalVariableDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. LocalVariableDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 4929 | { | |
| 4930 | if (true) { | |
| 4931 | throw (ParseException) jjte000; | |
| 4932 | } | |
| 4933 | } | |
| 4934 | } | |
| 4935 | { | |
| 4936 | if (true) { | |
| 4937 | throw (Error) jjte000; | |
| 4938 | } | |
| 4939 | } | |
| 4940 | } finally { | |
| 4941 |
6
1. LocalVariableDeclaration : negated conditional → SURVIVED 2. LocalVariableDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. LocalVariableDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. LocalVariableDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. LocalVariableDeclaration : negated conditional → KILLED 6. LocalVariableDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 4942 |
4
1. LocalVariableDeclaration : Substituted 1 with 0 → SURVIVED 2. LocalVariableDeclaration : Substituted 1 with 0 → SURVIVED 3. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. LocalVariableDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4943 | } | |
| 4944 | } | |
| 4945 | } | |
| 4946 | ||
| 4947 | final public void EmptyStatement() throws ParseException { | |
| 4948 | /*@bgen(jjtree) EmptyStatement */ | |
| 4949 |
2
1. EmptyStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. EmptyStatement : Substituted 76 with 77 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTEMPTYSTATEMENT); |
| 4950 |
1
1. EmptyStatement : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 4951 |
1
1. EmptyStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4952 | try { | |
| 4953 |
2
1. EmptyStatement : Substituted 83 with 84 → SURVIVED 2. EmptyStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(SEMICOLON); |
| 4954 | } finally { | |
| 4955 |
6
1. EmptyStatement : negated conditional → SURVIVED 2. EmptyStatement : negated conditional → SURVIVED 3. EmptyStatement : removed conditional - replaced equality check with false → SURVIVED 4. EmptyStatement : removed conditional - replaced equality check with false → SURVIVED 5. EmptyStatement : removed conditional - replaced equality check with true → SURVIVED 6. EmptyStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 4956 |
4
1. EmptyStatement : Substituted 1 with 0 → SURVIVED 2. EmptyStatement : Substituted 1 with 0 → SURVIVED 3. EmptyStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. EmptyStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 4957 | } | |
| 4958 | } | |
| 4959 | } | |
| 4960 | ||
| 4961 | final public void StatementExpression() throws ParseException { | |
| 4962 | /*@bgen(jjtree) StatementExpression */ | |
| 4963 |
2
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. StatementExpression : Substituted 77 with 78 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSTATEMENTEXPRESSION); |
| 4964 |
1
1. StatementExpression : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 4965 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 4966 | try { | |
| 4967 |
92
1. StatementExpression : Substituted -1 with 0 → SURVIVED 2. StatementExpression : negated conditional → SURVIVED 3. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. StatementExpression : removed conditional - replaced equality check with false → SURVIVED 5. StatementExpression : removed conditional - replaced equality check with true → SURVIVED 6. StatementExpression : RemoveSwitch 0 mutation → SURVIVED 7. StatementExpression : RemoveSwitch 1 mutation → SURVIVED 8. StatementExpression : RemoveSwitch 10 mutation → SURVIVED 9. StatementExpression : RemoveSwitch 11 mutation → SURVIVED 10. StatementExpression : RemoveSwitch 12 mutation → SURVIVED 11. StatementExpression : RemoveSwitch 13 mutation → SURVIVED 12. StatementExpression : RemoveSwitch 14 mutation → SURVIVED 13. StatementExpression : RemoveSwitch 15 mutation → SURVIVED 14. StatementExpression : RemoveSwitch 16 mutation → SURVIVED 15. StatementExpression : RemoveSwitch 17 mutation → SURVIVED 16. StatementExpression : RemoveSwitch 18 mutation → SURVIVED 17. StatementExpression : RemoveSwitch 19 mutation → SURVIVED 18. StatementExpression : RemoveSwitch 2 mutation → SURVIVED 19. StatementExpression : RemoveSwitch 20 mutation → SURVIVED 20. StatementExpression : RemoveSwitch 21 mutation → SURVIVED 21. StatementExpression : RemoveSwitch 22 mutation → SURVIVED 22. StatementExpression : RemoveSwitch 23 mutation → SURVIVED 23. StatementExpression : RemoveSwitch 24 mutation → SURVIVED 24. StatementExpression : RemoveSwitch 25 mutation → SURVIVED 25. StatementExpression : RemoveSwitch 26 mutation → SURVIVED 26. StatementExpression : RemoveSwitch 27 mutation → SURVIVED 27. StatementExpression : RemoveSwitch 28 mutation → SURVIVED 28. StatementExpression : RemoveSwitch 29 mutation → SURVIVED 29. StatementExpression : RemoveSwitch 3 mutation → SURVIVED 30. StatementExpression : RemoveSwitch 30 mutation → SURVIVED 31. StatementExpression : RemoveSwitch 31 mutation → SURVIVED 32. StatementExpression : RemoveSwitch 32 mutation → SURVIVED 33. StatementExpression : RemoveSwitch 33 mutation → SURVIVED 34. StatementExpression : RemoveSwitch 34 mutation → SURVIVED 35. StatementExpression : RemoveSwitch 35 mutation → SURVIVED 36. StatementExpression : RemoveSwitch 36 mutation → SURVIVED 37. StatementExpression : RemoveSwitch 37 mutation → SURVIVED 38. StatementExpression : RemoveSwitch 38 mutation → SURVIVED 39. StatementExpression : RemoveSwitch 39 mutation → SURVIVED 40. StatementExpression : RemoveSwitch 4 mutation → SURVIVED 41. StatementExpression : RemoveSwitch 40 mutation → SURVIVED 42. StatementExpression : RemoveSwitch 41 mutation → SURVIVED 43. StatementExpression : RemoveSwitch 42 mutation → SURVIVED 44. StatementExpression : RemoveSwitch 43 mutation → SURVIVED 45. StatementExpression : RemoveSwitch 44 mutation → SURVIVED 46. StatementExpression : RemoveSwitch 45 mutation → SURVIVED 47. StatementExpression : RemoveSwitch 46 mutation → SURVIVED 48. StatementExpression : RemoveSwitch 47 mutation → SURVIVED 49. StatementExpression : RemoveSwitch 48 mutation → SURVIVED 50. StatementExpression : RemoveSwitch 49 mutation → SURVIVED 51. StatementExpression : RemoveSwitch 5 mutation → SURVIVED 52. StatementExpression : RemoveSwitch 50 mutation → SURVIVED 53. StatementExpression : RemoveSwitch 51 mutation → SURVIVED 54. StatementExpression : RemoveSwitch 52 mutation → SURVIVED 55. StatementExpression : RemoveSwitch 53 mutation → SURVIVED 56. StatementExpression : RemoveSwitch 54 mutation → SURVIVED 57. StatementExpression : RemoveSwitch 55 mutation → SURVIVED 58. StatementExpression : RemoveSwitch 56 mutation → SURVIVED 59. StatementExpression : RemoveSwitch 57 mutation → SURVIVED 60. StatementExpression : RemoveSwitch 58 mutation → SURVIVED 61. StatementExpression : RemoveSwitch 59 mutation → SURVIVED 62. StatementExpression : RemoveSwitch 6 mutation → SURVIVED 63. StatementExpression : RemoveSwitch 60 mutation → SURVIVED 64. StatementExpression : RemoveSwitch 61 mutation → SURVIVED 65. StatementExpression : RemoveSwitch 62 mutation → SURVIVED 66. StatementExpression : RemoveSwitch 63 mutation → SURVIVED 67. StatementExpression : RemoveSwitch 64 mutation → SURVIVED 68. StatementExpression : RemoveSwitch 65 mutation → SURVIVED 69. StatementExpression : RemoveSwitch 66 mutation → SURVIVED 70. StatementExpression : RemoveSwitch 67 mutation → SURVIVED 71. StatementExpression : RemoveSwitch 68 mutation → SURVIVED 72. StatementExpression : RemoveSwitch 69 mutation → SURVIVED 73. StatementExpression : RemoveSwitch 7 mutation → SURVIVED 74. StatementExpression : RemoveSwitch 70 mutation → SURVIVED 75. StatementExpression : RemoveSwitch 71 mutation → SURVIVED 76. StatementExpression : RemoveSwitch 72 mutation → SURVIVED 77. StatementExpression : RemoveSwitch 73 mutation → SURVIVED 78. StatementExpression : RemoveSwitch 74 mutation → SURVIVED 79. StatementExpression : RemoveSwitch 75 mutation → SURVIVED 80. StatementExpression : RemoveSwitch 76 mutation → SURVIVED 81. StatementExpression : RemoveSwitch 77 mutation → SURVIVED 82. StatementExpression : RemoveSwitch 78 mutation → SURVIVED 83. StatementExpression : RemoveSwitch 79 mutation → SURVIVED 84. StatementExpression : RemoveSwitch 8 mutation → SURVIVED 85. StatementExpression : RemoveSwitch 80 mutation → SURVIVED 86. StatementExpression : RemoveSwitch 81 mutation → SURVIVED 87. StatementExpression : RemoveSwitch 82 mutation → SURVIVED 88. StatementExpression : RemoveSwitch 83 mutation → SURVIVED 89. StatementExpression : RemoveSwitch 84 mutation → SURVIVED 90. StatementExpression : RemoveSwitch 85 mutation → SURVIVED 91. StatementExpression : RemoveSwitch 9 mutation → SURVIVED 92. StatementExpression : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4968 | case INCR: | |
| 4969 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PreIncrementExpression → NO_COVERAGE |
PreIncrementExpression(); |
| 4970 | break; | |
| 4971 | case DECR: | |
| 4972 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PreDecrementExpression → NO_COVERAGE |
PreDecrementExpression(); |
| 4973 | break; | |
| 4974 | case BOOLEAN: | |
| 4975 | case BYTE: | |
| 4976 | case CHAR: | |
| 4977 | case DOUBLE: | |
| 4978 | case FALSE: | |
| 4979 | case FLOAT: | |
| 4980 | case INT: | |
| 4981 | case LONG: | |
| 4982 | case NEW: | |
| 4983 | case NULL: | |
| 4984 | case SHORT: | |
| 4985 | case SUPER: | |
| 4986 | case THIS: | |
| 4987 | case TRUE: | |
| 4988 | case VOID: | |
| 4989 | case INTEGER_LITERAL: | |
| 4990 | case FLOATING_POINT_LITERAL: | |
| 4991 | case CHARACTER_LITERAL: | |
| 4992 | case STRING_LITERAL: | |
| 4993 | case IDENTIFIER: | |
| 4994 | case LPAREN: | |
| 4995 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::PrimaryExpression → NO_COVERAGE |
PrimaryExpression(); |
| 4996 |
40
1. StatementExpression : Substituted -1 with 0 → NO_COVERAGE 2. StatementExpression : negated conditional → NO_COVERAGE 3. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. StatementExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. StatementExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. StatementExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. StatementExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. StatementExpression : RemoveSwitch 10 mutation → NO_COVERAGE 9. StatementExpression : RemoveSwitch 11 mutation → NO_COVERAGE 10. StatementExpression : RemoveSwitch 12 mutation → NO_COVERAGE 11. StatementExpression : RemoveSwitch 13 mutation → NO_COVERAGE 12. StatementExpression : RemoveSwitch 14 mutation → NO_COVERAGE 13. StatementExpression : RemoveSwitch 15 mutation → NO_COVERAGE 14. StatementExpression : RemoveSwitch 16 mutation → NO_COVERAGE 15. StatementExpression : RemoveSwitch 17 mutation → NO_COVERAGE 16. StatementExpression : RemoveSwitch 18 mutation → NO_COVERAGE 17. StatementExpression : RemoveSwitch 19 mutation → NO_COVERAGE 18. StatementExpression : RemoveSwitch 2 mutation → NO_COVERAGE 19. StatementExpression : RemoveSwitch 20 mutation → NO_COVERAGE 20. StatementExpression : RemoveSwitch 21 mutation → NO_COVERAGE 21. StatementExpression : RemoveSwitch 22 mutation → NO_COVERAGE 22. StatementExpression : RemoveSwitch 23 mutation → NO_COVERAGE 23. StatementExpression : RemoveSwitch 24 mutation → NO_COVERAGE 24. StatementExpression : RemoveSwitch 25 mutation → NO_COVERAGE 25. StatementExpression : RemoveSwitch 26 mutation → NO_COVERAGE 26. StatementExpression : RemoveSwitch 27 mutation → NO_COVERAGE 27. StatementExpression : RemoveSwitch 28 mutation → NO_COVERAGE 28. StatementExpression : RemoveSwitch 29 mutation → NO_COVERAGE 29. StatementExpression : RemoveSwitch 3 mutation → NO_COVERAGE 30. StatementExpression : RemoveSwitch 30 mutation → NO_COVERAGE 31. StatementExpression : RemoveSwitch 31 mutation → NO_COVERAGE 32. StatementExpression : RemoveSwitch 32 mutation → NO_COVERAGE 33. StatementExpression : RemoveSwitch 33 mutation → NO_COVERAGE 34. StatementExpression : RemoveSwitch 4 mutation → NO_COVERAGE 35. StatementExpression : RemoveSwitch 5 mutation → NO_COVERAGE 36. StatementExpression : RemoveSwitch 6 mutation → NO_COVERAGE 37. StatementExpression : RemoveSwitch 7 mutation → NO_COVERAGE 38. StatementExpression : RemoveSwitch 8 mutation → NO_COVERAGE 39. StatementExpression : RemoveSwitch 9 mutation → NO_COVERAGE 40. StatementExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 4997 | case ASSIGN: | |
| 4998 | case INCR: | |
| 4999 | case DECR: | |
| 5000 | case PLUSASSIGN: | |
| 5001 | case MINUSASSIGN: | |
| 5002 | case STARASSIGN: | |
| 5003 | case SLASHASSIGN: | |
| 5004 | case ANDASSIGN: | |
| 5005 | case ORASSIGN: | |
| 5006 | case XORASSIGN: | |
| 5007 | case REMASSIGN: | |
| 5008 | case LSHIFTASSIGN: | |
| 5009 | case RSIGNEDSHIFTASSIGN: | |
| 5010 | case RUNSIGNEDSHIFTASSIGN: | |
| 5011 |
40
1. StatementExpression : Substituted -1 with 0 → NO_COVERAGE 2. StatementExpression : negated conditional → NO_COVERAGE 3. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. StatementExpression : removed conditional - replaced equality check with false → NO_COVERAGE 5. StatementExpression : removed conditional - replaced equality check with true → NO_COVERAGE 6. StatementExpression : RemoveSwitch 0 mutation → NO_COVERAGE 7. StatementExpression : RemoveSwitch 1 mutation → NO_COVERAGE 8. StatementExpression : RemoveSwitch 10 mutation → NO_COVERAGE 9. StatementExpression : RemoveSwitch 11 mutation → NO_COVERAGE 10. StatementExpression : RemoveSwitch 12 mutation → NO_COVERAGE 11. StatementExpression : RemoveSwitch 13 mutation → NO_COVERAGE 12. StatementExpression : RemoveSwitch 14 mutation → NO_COVERAGE 13. StatementExpression : RemoveSwitch 15 mutation → NO_COVERAGE 14. StatementExpression : RemoveSwitch 16 mutation → NO_COVERAGE 15. StatementExpression : RemoveSwitch 17 mutation → NO_COVERAGE 16. StatementExpression : RemoveSwitch 18 mutation → NO_COVERAGE 17. StatementExpression : RemoveSwitch 19 mutation → NO_COVERAGE 18. StatementExpression : RemoveSwitch 2 mutation → NO_COVERAGE 19. StatementExpression : RemoveSwitch 20 mutation → NO_COVERAGE 20. StatementExpression : RemoveSwitch 21 mutation → NO_COVERAGE 21. StatementExpression : RemoveSwitch 22 mutation → NO_COVERAGE 22. StatementExpression : RemoveSwitch 23 mutation → NO_COVERAGE 23. StatementExpression : RemoveSwitch 24 mutation → NO_COVERAGE 24. StatementExpression : RemoveSwitch 25 mutation → NO_COVERAGE 25. StatementExpression : RemoveSwitch 26 mutation → NO_COVERAGE 26. StatementExpression : RemoveSwitch 27 mutation → NO_COVERAGE 27. StatementExpression : RemoveSwitch 28 mutation → NO_COVERAGE 28. StatementExpression : RemoveSwitch 29 mutation → NO_COVERAGE 29. StatementExpression : RemoveSwitch 3 mutation → NO_COVERAGE 30. StatementExpression : RemoveSwitch 30 mutation → NO_COVERAGE 31. StatementExpression : RemoveSwitch 31 mutation → NO_COVERAGE 32. StatementExpression : RemoveSwitch 32 mutation → NO_COVERAGE 33. StatementExpression : RemoveSwitch 33 mutation → NO_COVERAGE 34. StatementExpression : RemoveSwitch 4 mutation → NO_COVERAGE 35. StatementExpression : RemoveSwitch 5 mutation → NO_COVERAGE 36. StatementExpression : RemoveSwitch 6 mutation → NO_COVERAGE 37. StatementExpression : RemoveSwitch 7 mutation → NO_COVERAGE 38. StatementExpression : RemoveSwitch 8 mutation → NO_COVERAGE 39. StatementExpression : RemoveSwitch 9 mutation → NO_COVERAGE 40. StatementExpression : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5012 | case INCR: | |
| 5013 |
2
1. StatementExpression : Substituted 99 with 100 → NO_COVERAGE 2. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(INCR); |
| 5014 | break; | |
| 5015 | case DECR: | |
| 5016 |
2
1. StatementExpression : Substituted 100 with 101 → NO_COVERAGE 2. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(DECR); |
| 5017 | break; | |
| 5018 | case ASSIGN: | |
| 5019 | case PLUSASSIGN: | |
| 5020 | case MINUSASSIGN: | |
| 5021 | case STARASSIGN: | |
| 5022 | case SLASHASSIGN: | |
| 5023 | case ANDASSIGN: | |
| 5024 | case ORASSIGN: | |
| 5025 | case XORASSIGN: | |
| 5026 | case REMASSIGN: | |
| 5027 | case LSHIFTASSIGN: | |
| 5028 | case RSIGNEDSHIFTASSIGN: | |
| 5029 | case RUNSIGNEDSHIFTASSIGN: | |
| 5030 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AssignmentOperator → NO_COVERAGE |
AssignmentOperator(); |
| 5031 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 5032 | break; | |
| 5033 | default: | |
| 5034 |
2
1. StatementExpression : Substituted -1 with 0 → NO_COVERAGE 2. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 5035 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 5036 | } | |
| 5037 | break; | |
| 5038 | default: | |
| 5039 | ; | |
| 5040 | } | |
| 5041 | break; | |
| 5042 | default: | |
| 5043 |
2
1. StatementExpression : Substituted -1 with 0 → SURVIVED 2. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 5044 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 5045 | } | |
| 5046 | } catch (Throwable jjte000) { | |
| 5047 |
3
1. StatementExpression : removed conditional - replaced equality check with true → SURVIVED 2. StatementExpression : negated conditional → KILLED 3. StatementExpression : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5048 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5049 |
1
1. StatementExpression : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5050 | } else { | |
| 5051 |
1
1. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5052 | } | |
| 5053 |
3
1. StatementExpression : negated conditional → SURVIVED 2. StatementExpression : removed conditional - replaced equality check with false → SURVIVED 3. StatementExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5054 | { | |
| 5055 | if (true) { | |
| 5056 | throw (RuntimeException) jjte000; | |
| 5057 | } | |
| 5058 | } | |
| 5059 | } | |
| 5060 |
3
1. StatementExpression : negated conditional → SURVIVED 2. StatementExpression : removed conditional - replaced equality check with false → SURVIVED 3. StatementExpression : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5061 | { | |
| 5062 | if (true) { | |
| 5063 | throw (ParseException) jjte000; | |
| 5064 | } | |
| 5065 | } | |
| 5066 | } | |
| 5067 | { | |
| 5068 | if (true) { | |
| 5069 | throw (Error) jjte000; | |
| 5070 | } | |
| 5071 | } | |
| 5072 | } finally { | |
| 5073 |
6
1. StatementExpression : negated conditional → SURVIVED 2. StatementExpression : removed conditional - replaced equality check with false → SURVIVED 3. StatementExpression : removed conditional - replaced equality check with false → SURVIVED 4. StatementExpression : removed conditional - replaced equality check with true → SURVIVED 5. StatementExpression : negated conditional → KILLED 6. StatementExpression : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5074 |
4
1. StatementExpression : Substituted 1 with 0 → SURVIVED 2. StatementExpression : Substituted 1 with 0 → SURVIVED 3. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. StatementExpression : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5075 | } | |
| 5076 | } | |
| 5077 | } | |
| 5078 | ||
| 5079 | final public void SwitchStatement() throws ParseException { | |
| 5080 | /*@bgen(jjtree) SwitchStatement */ | |
| 5081 |
2
1. SwitchStatement : Substituted 78 with 79 → SURVIVED 2. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSWITCHSTATEMENT); |
| 5082 |
1
1. SwitchStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5083 |
1
1. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5084 | try { | |
| 5085 |
2
1. SwitchStatement : Substituted 55 with 56 → SURVIVED 2. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(SWITCH); |
| 5086 |
2
1. SwitchStatement : Substituted 77 with 78 → SURVIVED 2. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 5087 |
1
1. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 5088 |
2
1. SwitchStatement : Substituted 78 with 79 → SURVIVED 2. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 5089 |
2
1. SwitchStatement : Substituted 79 with 80 → SURVIVED 2. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LBRACE); |
| 5090 | label_40:while (true) { | |
| 5091 |
8
1. SwitchStatement : Substituted -1 with 0 → NO_COVERAGE 2. SwitchStatement : negated conditional → NO_COVERAGE 3. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. SwitchStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. SwitchStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. SwitchStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. SwitchStatement : RemoveSwitch 1 mutation → NO_COVERAGE 8. SwitchStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5092 | case CASE: | |
| 5093 | case _DEFAULT: | |
| 5094 | ; | |
| 5095 | break; | |
| 5096 | default: | |
| 5097 | break label_40; | |
| 5098 | } | |
| 5099 |
1
1. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::SwitchLabel → NO_COVERAGE |
SwitchLabel(); |
| 5100 | label_41:while (true) { | |
| 5101 |
93
1. SwitchStatement : Substituted -1 with 0 → NO_COVERAGE 2. SwitchStatement : negated conditional → NO_COVERAGE 3. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. SwitchStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. SwitchStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. SwitchStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. SwitchStatement : RemoveSwitch 1 mutation → NO_COVERAGE 8. SwitchStatement : RemoveSwitch 10 mutation → NO_COVERAGE 9. SwitchStatement : RemoveSwitch 11 mutation → NO_COVERAGE 10. SwitchStatement : RemoveSwitch 12 mutation → NO_COVERAGE 11. SwitchStatement : RemoveSwitch 13 mutation → NO_COVERAGE 12. SwitchStatement : RemoveSwitch 14 mutation → NO_COVERAGE 13. SwitchStatement : RemoveSwitch 15 mutation → NO_COVERAGE 14. SwitchStatement : RemoveSwitch 16 mutation → NO_COVERAGE 15. SwitchStatement : RemoveSwitch 17 mutation → NO_COVERAGE 16. SwitchStatement : RemoveSwitch 18 mutation → NO_COVERAGE 17. SwitchStatement : RemoveSwitch 19 mutation → NO_COVERAGE 18. SwitchStatement : RemoveSwitch 2 mutation → NO_COVERAGE 19. SwitchStatement : RemoveSwitch 20 mutation → NO_COVERAGE 20. SwitchStatement : RemoveSwitch 21 mutation → NO_COVERAGE 21. SwitchStatement : RemoveSwitch 22 mutation → NO_COVERAGE 22. SwitchStatement : RemoveSwitch 23 mutation → NO_COVERAGE 23. SwitchStatement : RemoveSwitch 24 mutation → NO_COVERAGE 24. SwitchStatement : RemoveSwitch 25 mutation → NO_COVERAGE 25. SwitchStatement : RemoveSwitch 26 mutation → NO_COVERAGE 26. SwitchStatement : RemoveSwitch 27 mutation → NO_COVERAGE 27. SwitchStatement : RemoveSwitch 28 mutation → NO_COVERAGE 28. SwitchStatement : RemoveSwitch 29 mutation → NO_COVERAGE 29. SwitchStatement : RemoveSwitch 3 mutation → NO_COVERAGE 30. SwitchStatement : RemoveSwitch 30 mutation → NO_COVERAGE 31. SwitchStatement : RemoveSwitch 31 mutation → NO_COVERAGE 32. SwitchStatement : RemoveSwitch 32 mutation → NO_COVERAGE 33. SwitchStatement : RemoveSwitch 33 mutation → NO_COVERAGE 34. SwitchStatement : RemoveSwitch 34 mutation → NO_COVERAGE 35. SwitchStatement : RemoveSwitch 35 mutation → NO_COVERAGE 36. SwitchStatement : RemoveSwitch 36 mutation → NO_COVERAGE 37. SwitchStatement : RemoveSwitch 37 mutation → NO_COVERAGE 38. SwitchStatement : RemoveSwitch 38 mutation → NO_COVERAGE 39. SwitchStatement : RemoveSwitch 39 mutation → NO_COVERAGE 40. SwitchStatement : RemoveSwitch 4 mutation → NO_COVERAGE 41. SwitchStatement : RemoveSwitch 40 mutation → NO_COVERAGE 42. SwitchStatement : RemoveSwitch 41 mutation → NO_COVERAGE 43. SwitchStatement : RemoveSwitch 42 mutation → NO_COVERAGE 44. SwitchStatement : RemoveSwitch 43 mutation → NO_COVERAGE 45. SwitchStatement : RemoveSwitch 44 mutation → NO_COVERAGE 46. SwitchStatement : RemoveSwitch 45 mutation → NO_COVERAGE 47. SwitchStatement : RemoveSwitch 46 mutation → NO_COVERAGE 48. SwitchStatement : RemoveSwitch 47 mutation → NO_COVERAGE 49. SwitchStatement : RemoveSwitch 48 mutation → NO_COVERAGE 50. SwitchStatement : RemoveSwitch 49 mutation → NO_COVERAGE 51. SwitchStatement : RemoveSwitch 5 mutation → NO_COVERAGE 52. SwitchStatement : RemoveSwitch 50 mutation → NO_COVERAGE 53. SwitchStatement : RemoveSwitch 51 mutation → NO_COVERAGE 54. SwitchStatement : RemoveSwitch 52 mutation → NO_COVERAGE 55. SwitchStatement : RemoveSwitch 53 mutation → NO_COVERAGE 56. SwitchStatement : RemoveSwitch 54 mutation → NO_COVERAGE 57. SwitchStatement : RemoveSwitch 55 mutation → NO_COVERAGE 58. SwitchStatement : RemoveSwitch 56 mutation → NO_COVERAGE 59. SwitchStatement : RemoveSwitch 57 mutation → NO_COVERAGE 60. SwitchStatement : RemoveSwitch 58 mutation → NO_COVERAGE 61. SwitchStatement : RemoveSwitch 59 mutation → NO_COVERAGE 62. SwitchStatement : RemoveSwitch 6 mutation → NO_COVERAGE 63. SwitchStatement : RemoveSwitch 60 mutation → NO_COVERAGE 64. SwitchStatement : RemoveSwitch 61 mutation → NO_COVERAGE 65. SwitchStatement : RemoveSwitch 62 mutation → NO_COVERAGE 66. SwitchStatement : RemoveSwitch 63 mutation → NO_COVERAGE 67. SwitchStatement : RemoveSwitch 64 mutation → NO_COVERAGE 68. SwitchStatement : RemoveSwitch 65 mutation → NO_COVERAGE 69. SwitchStatement : RemoveSwitch 66 mutation → NO_COVERAGE 70. SwitchStatement : RemoveSwitch 67 mutation → NO_COVERAGE 71. SwitchStatement : RemoveSwitch 68 mutation → NO_COVERAGE 72. SwitchStatement : RemoveSwitch 69 mutation → NO_COVERAGE 73. SwitchStatement : RemoveSwitch 7 mutation → NO_COVERAGE 74. SwitchStatement : RemoveSwitch 70 mutation → NO_COVERAGE 75. SwitchStatement : RemoveSwitch 71 mutation → NO_COVERAGE 76. SwitchStatement : RemoveSwitch 72 mutation → NO_COVERAGE 77. SwitchStatement : RemoveSwitch 73 mutation → NO_COVERAGE 78. SwitchStatement : RemoveSwitch 74 mutation → NO_COVERAGE 79. SwitchStatement : RemoveSwitch 75 mutation → NO_COVERAGE 80. SwitchStatement : RemoveSwitch 76 mutation → NO_COVERAGE 81. SwitchStatement : RemoveSwitch 77 mutation → NO_COVERAGE 82. SwitchStatement : RemoveSwitch 78 mutation → NO_COVERAGE 83. SwitchStatement : RemoveSwitch 79 mutation → NO_COVERAGE 84. SwitchStatement : RemoveSwitch 8 mutation → NO_COVERAGE 85. SwitchStatement : RemoveSwitch 80 mutation → NO_COVERAGE 86. SwitchStatement : RemoveSwitch 81 mutation → NO_COVERAGE 87. SwitchStatement : RemoveSwitch 82 mutation → NO_COVERAGE 88. SwitchStatement : RemoveSwitch 83 mutation → NO_COVERAGE 89. SwitchStatement : RemoveSwitch 84 mutation → NO_COVERAGE 90. SwitchStatement : RemoveSwitch 85 mutation → NO_COVERAGE 91. SwitchStatement : RemoveSwitch 86 mutation → NO_COVERAGE 92. SwitchStatement : RemoveSwitch 9 mutation → NO_COVERAGE 93. SwitchStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5102 | case ASSERT: | |
| 5103 | case BOOLEAN: | |
| 5104 | case BREAK: | |
| 5105 | case BYTE: | |
| 5106 | case CHAR: | |
| 5107 | case CLASS: | |
| 5108 | case CONTINUE: | |
| 5109 | case DO: | |
| 5110 | case DOUBLE: | |
| 5111 | case FALSE: | |
| 5112 | case FINAL: | |
| 5113 | case FLOAT: | |
| 5114 | case FOR: | |
| 5115 | case IF: | |
| 5116 | case INT: | |
| 5117 | case INTERFACE: | |
| 5118 | case LONG: | |
| 5119 | case NEW: | |
| 5120 | case NULL: | |
| 5121 | case RETURN: | |
| 5122 | case SHORT: | |
| 5123 | case SUPER: | |
| 5124 | case SWITCH: | |
| 5125 | case SYNCHRONIZED: | |
| 5126 | case THIS: | |
| 5127 | case THROW: | |
| 5128 | case TRUE: | |
| 5129 | case TRY: | |
| 5130 | case VOID: | |
| 5131 | case WHILE: | |
| 5132 | case INTEGER_LITERAL: | |
| 5133 | case FLOATING_POINT_LITERAL: | |
| 5134 | case CHARACTER_LITERAL: | |
| 5135 | case STRING_LITERAL: | |
| 5136 | case IDENTIFIER: | |
| 5137 | case LPAREN: | |
| 5138 | case LBRACE: | |
| 5139 | case SEMICOLON: | |
| 5140 | case INCR: | |
| 5141 | case DECR: | |
| 5142 | ; | |
| 5143 | break; | |
| 5144 | default: | |
| 5145 | break label_41; | |
| 5146 | } | |
| 5147 |
1
1. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::BlockStatement → NO_COVERAGE |
BlockStatement(); |
| 5148 | } | |
| 5149 | } | |
| 5150 |
2
1. SwitchStatement : Substituted 80 with 81 → NO_COVERAGE 2. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 5151 | } catch (Throwable jjte000) { | |
| 5152 |
3
1. SwitchStatement : removed conditional - replaced equality check with true → SURVIVED 2. SwitchStatement : negated conditional → KILLED 3. SwitchStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5153 |
1
1. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5154 |
1
1. SwitchStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5155 | } else { | |
| 5156 |
1
1. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5157 | } | |
| 5158 |
3
1. SwitchStatement : negated conditional → KILLED 2. SwitchStatement : removed conditional - replaced equality check with false → KILLED 3. SwitchStatement : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 5159 | { | |
| 5160 | if (true) { | |
| 5161 | throw (RuntimeException) jjte000; | |
| 5162 | } | |
| 5163 | } | |
| 5164 | } | |
| 5165 |
3
1. SwitchStatement : removed conditional - replaced equality check with false → SURVIVED 2. SwitchStatement : negated conditional → KILLED 3. SwitchStatement : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 5166 | { | |
| 5167 | if (true) { | |
| 5168 | throw (ParseException) jjte000; | |
| 5169 | } | |
| 5170 | } | |
| 5171 | } | |
| 5172 | { | |
| 5173 | if (true) { | |
| 5174 | throw (Error) jjte000; | |
| 5175 | } | |
| 5176 | } | |
| 5177 | } finally { | |
| 5178 |
6
1. SwitchStatement : negated conditional → SURVIVED 2. SwitchStatement : removed conditional - replaced equality check with false → SURVIVED 3. SwitchStatement : removed conditional - replaced equality check with false → SURVIVED 4. SwitchStatement : removed conditional - replaced equality check with true → SURVIVED 5. SwitchStatement : negated conditional → KILLED 6. SwitchStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5179 |
4
1. SwitchStatement : Substituted 1 with 0 → SURVIVED 2. SwitchStatement : Substituted 1 with 0 → SURVIVED 3. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. SwitchStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5180 | } | |
| 5181 | } | |
| 5182 | } | |
| 5183 | ||
| 5184 | final public void SwitchLabel() throws ParseException { | |
| 5185 | /*@bgen(jjtree) SwitchLabel */ | |
| 5186 |
2
1. SwitchLabel : Substituted 79 with 80 → SURVIVED 2. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSWITCHLABEL); |
| 5187 |
1
1. SwitchLabel : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5188 |
1
1. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5189 | try { | |
| 5190 |
8
1. SwitchLabel : Substituted -1 with 0 → SURVIVED 2. SwitchLabel : negated conditional → SURVIVED 3. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. SwitchLabel : removed conditional - replaced equality check with false → SURVIVED 5. SwitchLabel : removed conditional - replaced equality check with true → SURVIVED 6. SwitchLabel : RemoveSwitch 0 mutation → SURVIVED 7. SwitchLabel : RemoveSwitch 1 mutation → SURVIVED 8. SwitchLabel : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5191 | case CASE: | |
| 5192 |
2
1. SwitchLabel : Substituted 18 with 19 → NO_COVERAGE 2. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(CASE); |
| 5193 |
1
1. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 5194 |
2
1. SwitchLabel : Substituted 92 with 93 → NO_COVERAGE 2. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COLON); |
| 5195 | break; | |
| 5196 | case _DEFAULT: | |
| 5197 |
2
1. SwitchLabel : Substituted 24 with 25 → NO_COVERAGE 2. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(_DEFAULT); |
| 5198 |
2
1. SwitchLabel : Substituted 92 with 93 → NO_COVERAGE 2. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COLON); |
| 5199 | break; | |
| 5200 | default: | |
| 5201 |
2
1. SwitchLabel : Substituted -1 with 0 → SURVIVED 2. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 5202 |
1
1. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 5203 | } | |
| 5204 | } catch (Throwable jjte000) { | |
| 5205 |
3
1. SwitchLabel : removed conditional - replaced equality check with true → SURVIVED 2. SwitchLabel : negated conditional → KILLED 3. SwitchLabel : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5206 |
1
1. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5207 |
1
1. SwitchLabel : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5208 | } else { | |
| 5209 |
1
1. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5210 | } | |
| 5211 |
3
1. SwitchLabel : negated conditional → SURVIVED 2. SwitchLabel : removed conditional - replaced equality check with false → SURVIVED 3. SwitchLabel : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5212 | { | |
| 5213 | if (true) { | |
| 5214 | throw (RuntimeException) jjte000; | |
| 5215 | } | |
| 5216 | } | |
| 5217 | } | |
| 5218 |
3
1. SwitchLabel : negated conditional → SURVIVED 2. SwitchLabel : removed conditional - replaced equality check with false → SURVIVED 3. SwitchLabel : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5219 | { | |
| 5220 | if (true) { | |
| 5221 | throw (ParseException) jjte000; | |
| 5222 | } | |
| 5223 | } | |
| 5224 | } | |
| 5225 | { | |
| 5226 | if (true) { | |
| 5227 | throw (Error) jjte000; | |
| 5228 | } | |
| 5229 | } | |
| 5230 | } finally { | |
| 5231 |
6
1. SwitchLabel : negated conditional → SURVIVED 2. SwitchLabel : removed conditional - replaced equality check with false → SURVIVED 3. SwitchLabel : removed conditional - replaced equality check with false → SURVIVED 4. SwitchLabel : removed conditional - replaced equality check with true → SURVIVED 5. SwitchLabel : negated conditional → KILLED 6. SwitchLabel : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5232 |
4
1. SwitchLabel : Substituted 1 with 0 → SURVIVED 2. SwitchLabel : Substituted 1 with 0 → SURVIVED 3. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. SwitchLabel : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5233 | } | |
| 5234 | } | |
| 5235 | } | |
| 5236 | ||
| 5237 | final public void IfStatement() throws ParseException { | |
| 5238 | /*@bgen(jjtree) IfStatement */ | |
| 5239 |
2
1. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. IfStatement : Substituted 80 with 81 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTIFSTATEMENT); |
| 5240 |
1
1. IfStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5241 |
1
1. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5242 | try { | |
| 5243 |
2
1. IfStatement : Substituted 36 with 37 → SURVIVED 2. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IF); |
| 5244 |
2
1. IfStatement : Substituted 77 with 78 → SURVIVED 2. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 5245 |
1
1. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 5246 |
2
1. IfStatement : Substituted 78 with 79 → SURVIVED 2. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 5247 |
1
1. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Statement → SURVIVED |
Statement(); |
| 5248 |
7
1. IfStatement : Substituted -1 with 0 → SURVIVED 2. IfStatement : negated conditional → SURVIVED 3. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. IfStatement : removed conditional - replaced equality check with false → SURVIVED 5. IfStatement : removed conditional - replaced equality check with true → SURVIVED 6. IfStatement : RemoveSwitch 0 mutation → SURVIVED 7. IfStatement : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5249 | case ELSE: | |
| 5250 |
2
1. IfStatement : Substituted 27 with 28 → NO_COVERAGE 2. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(ELSE); |
| 5251 |
1
1. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Statement → NO_COVERAGE |
Statement(); |
| 5252 | break; | |
| 5253 | default: | |
| 5254 | ; | |
| 5255 | } | |
| 5256 | } catch (Throwable jjte000) { | |
| 5257 |
3
1. IfStatement : removed conditional - replaced equality check with true → SURVIVED 2. IfStatement : negated conditional → KILLED 3. IfStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5258 |
1
1. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5259 |
1
1. IfStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5260 | } else { | |
| 5261 |
1
1. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5262 | } | |
| 5263 |
3
1. IfStatement : negated conditional → SURVIVED 2. IfStatement : removed conditional - replaced equality check with false → SURVIVED 3. IfStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5264 | { | |
| 5265 | if (true) { | |
| 5266 | throw (RuntimeException) jjte000; | |
| 5267 | } | |
| 5268 | } | |
| 5269 | } | |
| 5270 |
3
1. IfStatement : negated conditional → SURVIVED 2. IfStatement : removed conditional - replaced equality check with false → SURVIVED 3. IfStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5271 | { | |
| 5272 | if (true) { | |
| 5273 | throw (ParseException) jjte000; | |
| 5274 | } | |
| 5275 | } | |
| 5276 | } | |
| 5277 | { | |
| 5278 | if (true) { | |
| 5279 | throw (Error) jjte000; | |
| 5280 | } | |
| 5281 | } | |
| 5282 | } finally { | |
| 5283 |
6
1. IfStatement : negated conditional → SURVIVED 2. IfStatement : removed conditional - replaced equality check with false → SURVIVED 3. IfStatement : removed conditional - replaced equality check with false → SURVIVED 4. IfStatement : removed conditional - replaced equality check with true → SURVIVED 5. IfStatement : negated conditional → KILLED 6. IfStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5284 |
4
1. IfStatement : Substituted 1 with 0 → SURVIVED 2. IfStatement : Substituted 1 with 0 → SURVIVED 3. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. IfStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5285 | } | |
| 5286 | } | |
| 5287 | } | |
| 5288 | ||
| 5289 | final public void WhileStatement() throws ParseException { | |
| 5290 | /*@bgen(jjtree) WhileStatement */ | |
| 5291 |
2
1. WhileStatement : Substituted 81 with 82 → SURVIVED 2. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTWHILESTATEMENT); |
| 5292 |
1
1. WhileStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5293 |
1
1. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5294 | try { | |
| 5295 |
2
1. WhileStatement : Substituted 65 with 66 → SURVIVED 2. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(WHILE); |
| 5296 |
2
1. WhileStatement : Substituted 77 with 78 → SURVIVED 2. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 5297 |
1
1. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 5298 |
2
1. WhileStatement : Substituted 78 with 79 → SURVIVED 2. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 5299 |
1
1. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Statement → SURVIVED |
Statement(); |
| 5300 | } catch (Throwable jjte000) { | |
| 5301 |
3
1. WhileStatement : removed conditional - replaced equality check with true → SURVIVED 2. WhileStatement : negated conditional → KILLED 3. WhileStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5302 |
1
1. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5303 |
1
1. WhileStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5304 | } else { | |
| 5305 |
1
1. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5306 | } | |
| 5307 |
3
1. WhileStatement : removed conditional - replaced equality check with true → SURVIVED 2. WhileStatement : negated conditional → KILLED 3. WhileStatement : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 5308 | { | |
| 5309 | if (true) { | |
| 5310 | throw (RuntimeException) jjte000; | |
| 5311 | } | |
| 5312 | } | |
| 5313 | } | |
| 5314 |
3
1. WhileStatement : negated conditional → SURVIVED 2. WhileStatement : removed conditional - replaced equality check with false → SURVIVED 3. WhileStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5315 | { | |
| 5316 | if (true) { | |
| 5317 | throw (ParseException) jjte000; | |
| 5318 | } | |
| 5319 | } | |
| 5320 | } | |
| 5321 | { | |
| 5322 | if (true) { | |
| 5323 | throw (Error) jjte000; | |
| 5324 | } | |
| 5325 | } | |
| 5326 | } finally { | |
| 5327 |
6
1. WhileStatement : negated conditional → SURVIVED 2. WhileStatement : removed conditional - replaced equality check with false → SURVIVED 3. WhileStatement : removed conditional - replaced equality check with false → SURVIVED 4. WhileStatement : removed conditional - replaced equality check with true → SURVIVED 5. WhileStatement : negated conditional → KILLED 6. WhileStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5328 |
4
1. WhileStatement : Substituted 1 with 0 → SURVIVED 2. WhileStatement : Substituted 1 with 0 → SURVIVED 3. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. WhileStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5329 | } | |
| 5330 | } | |
| 5331 | } | |
| 5332 | ||
| 5333 | final public void DoStatement() throws ParseException { | |
| 5334 | /*@bgen(jjtree) DoStatement */ | |
| 5335 |
2
1. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. DoStatement : Substituted 82 with 83 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTDOSTATEMENT); |
| 5336 |
1
1. DoStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5337 |
1
1. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5338 | try { | |
| 5339 |
2
1. DoStatement : Substituted 25 with 26 → SURVIVED 2. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(DO); |
| 5340 |
1
1. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Statement → SURVIVED |
Statement(); |
| 5341 |
2
1. DoStatement : Substituted 65 with 66 → SURVIVED 2. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(WHILE); |
| 5342 |
2
1. DoStatement : Substituted 77 with 78 → SURVIVED 2. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 5343 |
1
1. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 5344 |
2
1. DoStatement : Substituted 78 with 79 → SURVIVED 2. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 5345 |
2
1. DoStatement : Substituted 83 with 84 → SURVIVED 2. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(SEMICOLON); |
| 5346 | } catch (Throwable jjte000) { | |
| 5347 |
3
1. DoStatement : removed conditional - replaced equality check with true → SURVIVED 2. DoStatement : negated conditional → KILLED 3. DoStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5348 |
1
1. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5349 |
1
1. DoStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5350 | } else { | |
| 5351 |
1
1. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5352 | } | |
| 5353 |
3
1. DoStatement : negated conditional → SURVIVED 2. DoStatement : removed conditional - replaced equality check with false → SURVIVED 3. DoStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5354 | { | |
| 5355 | if (true) { | |
| 5356 | throw (RuntimeException) jjte000; | |
| 5357 | } | |
| 5358 | } | |
| 5359 | } | |
| 5360 |
3
1. DoStatement : negated conditional → SURVIVED 2. DoStatement : removed conditional - replaced equality check with false → SURVIVED 3. DoStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5361 | { | |
| 5362 | if (true) { | |
| 5363 | throw (ParseException) jjte000; | |
| 5364 | } | |
| 5365 | } | |
| 5366 | } | |
| 5367 | { | |
| 5368 | if (true) { | |
| 5369 | throw (Error) jjte000; | |
| 5370 | } | |
| 5371 | } | |
| 5372 | } finally { | |
| 5373 |
6
1. DoStatement : negated conditional → SURVIVED 2. DoStatement : removed conditional - replaced equality check with false → SURVIVED 3. DoStatement : removed conditional - replaced equality check with false → SURVIVED 4. DoStatement : removed conditional - replaced equality check with true → SURVIVED 5. DoStatement : negated conditional → KILLED 6. DoStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5374 |
4
1. DoStatement : Substituted 1 with 0 → SURVIVED 2. DoStatement : Substituted 1 with 0 → SURVIVED 3. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. DoStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5375 | } | |
| 5376 | } | |
| 5377 | } | |
| 5378 | ||
| 5379 | final public void ForStatement() throws ParseException { | |
| 5380 | /*@bgen(jjtree) ForStatement */ | |
| 5381 |
2
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ForStatement : Substituted 83 with 84 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTFORSTATEMENT); |
| 5382 |
1
1. ForStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5383 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5384 | try { | |
| 5385 |
2
1. ForStatement : Substituted 34 with 35 → SURVIVED 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(FOR); |
| 5386 |
2
1. ForStatement : Substituted 77 with 78 → SURVIVED 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 5387 |
5
1. ForStatement : Substituted 2147483647 with -2147483648 → SURVIVED 2. ForStatement : negated conditional → SURVIVED 3. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_35 → SURVIVED 4. ForStatement : removed conditional - replaced equality check with false → SURVIVED 5. ForStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_35(2147483647)) { |
| 5388 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → NO_COVERAGE |
Type(); |
| 5389 |
2
1. ForStatement : Substituted 74 with 75 → NO_COVERAGE 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 5390 |
2
1. ForStatement : Substituted 92 with 93 → NO_COVERAGE 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COLON); |
| 5391 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 5392 | } else { | |
| 5393 |
92
1. ForStatement : Substituted -1 with 0 → NO_COVERAGE 2. ForStatement : negated conditional → NO_COVERAGE 3. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ForStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. ForStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. ForStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. ForStatement : RemoveSwitch 1 mutation → NO_COVERAGE 8. ForStatement : RemoveSwitch 10 mutation → NO_COVERAGE 9. ForStatement : RemoveSwitch 11 mutation → NO_COVERAGE 10. ForStatement : RemoveSwitch 12 mutation → NO_COVERAGE 11. ForStatement : RemoveSwitch 13 mutation → NO_COVERAGE 12. ForStatement : RemoveSwitch 14 mutation → NO_COVERAGE 13. ForStatement : RemoveSwitch 15 mutation → NO_COVERAGE 14. ForStatement : RemoveSwitch 16 mutation → NO_COVERAGE 15. ForStatement : RemoveSwitch 17 mutation → NO_COVERAGE 16. ForStatement : RemoveSwitch 18 mutation → NO_COVERAGE 17. ForStatement : RemoveSwitch 19 mutation → NO_COVERAGE 18. ForStatement : RemoveSwitch 2 mutation → NO_COVERAGE 19. ForStatement : RemoveSwitch 20 mutation → NO_COVERAGE 20. ForStatement : RemoveSwitch 21 mutation → NO_COVERAGE 21. ForStatement : RemoveSwitch 22 mutation → NO_COVERAGE 22. ForStatement : RemoveSwitch 23 mutation → NO_COVERAGE 23. ForStatement : RemoveSwitch 24 mutation → NO_COVERAGE 24. ForStatement : RemoveSwitch 25 mutation → NO_COVERAGE 25. ForStatement : RemoveSwitch 26 mutation → NO_COVERAGE 26. ForStatement : RemoveSwitch 27 mutation → NO_COVERAGE 27. ForStatement : RemoveSwitch 28 mutation → NO_COVERAGE 28. ForStatement : RemoveSwitch 29 mutation → NO_COVERAGE 29. ForStatement : RemoveSwitch 3 mutation → NO_COVERAGE 30. ForStatement : RemoveSwitch 30 mutation → NO_COVERAGE 31. ForStatement : RemoveSwitch 31 mutation → NO_COVERAGE 32. ForStatement : RemoveSwitch 32 mutation → NO_COVERAGE 33. ForStatement : RemoveSwitch 33 mutation → NO_COVERAGE 34. ForStatement : RemoveSwitch 34 mutation → NO_COVERAGE 35. ForStatement : RemoveSwitch 35 mutation → NO_COVERAGE 36. ForStatement : RemoveSwitch 36 mutation → NO_COVERAGE 37. ForStatement : RemoveSwitch 37 mutation → NO_COVERAGE 38. ForStatement : RemoveSwitch 38 mutation → NO_COVERAGE 39. ForStatement : RemoveSwitch 39 mutation → NO_COVERAGE 40. ForStatement : RemoveSwitch 4 mutation → NO_COVERAGE 41. ForStatement : RemoveSwitch 40 mutation → NO_COVERAGE 42. ForStatement : RemoveSwitch 41 mutation → NO_COVERAGE 43. ForStatement : RemoveSwitch 42 mutation → NO_COVERAGE 44. ForStatement : RemoveSwitch 43 mutation → NO_COVERAGE 45. ForStatement : RemoveSwitch 44 mutation → NO_COVERAGE 46. ForStatement : RemoveSwitch 45 mutation → NO_COVERAGE 47. ForStatement : RemoveSwitch 46 mutation → NO_COVERAGE 48. ForStatement : RemoveSwitch 47 mutation → NO_COVERAGE 49. ForStatement : RemoveSwitch 48 mutation → NO_COVERAGE 50. ForStatement : RemoveSwitch 49 mutation → NO_COVERAGE 51. ForStatement : RemoveSwitch 5 mutation → NO_COVERAGE 52. ForStatement : RemoveSwitch 50 mutation → NO_COVERAGE 53. ForStatement : RemoveSwitch 51 mutation → NO_COVERAGE 54. ForStatement : RemoveSwitch 52 mutation → NO_COVERAGE 55. ForStatement : RemoveSwitch 53 mutation → NO_COVERAGE 56. ForStatement : RemoveSwitch 54 mutation → NO_COVERAGE 57. ForStatement : RemoveSwitch 55 mutation → NO_COVERAGE 58. ForStatement : RemoveSwitch 56 mutation → NO_COVERAGE 59. ForStatement : RemoveSwitch 57 mutation → NO_COVERAGE 60. ForStatement : RemoveSwitch 58 mutation → NO_COVERAGE 61. ForStatement : RemoveSwitch 59 mutation → NO_COVERAGE 62. ForStatement : RemoveSwitch 6 mutation → NO_COVERAGE 63. ForStatement : RemoveSwitch 60 mutation → NO_COVERAGE 64. ForStatement : RemoveSwitch 61 mutation → NO_COVERAGE 65. ForStatement : RemoveSwitch 62 mutation → NO_COVERAGE 66. ForStatement : RemoveSwitch 63 mutation → NO_COVERAGE 67. ForStatement : RemoveSwitch 64 mutation → NO_COVERAGE 68. ForStatement : RemoveSwitch 65 mutation → NO_COVERAGE 69. ForStatement : RemoveSwitch 66 mutation → NO_COVERAGE 70. ForStatement : RemoveSwitch 67 mutation → NO_COVERAGE 71. ForStatement : RemoveSwitch 68 mutation → NO_COVERAGE 72. ForStatement : RemoveSwitch 69 mutation → NO_COVERAGE 73. ForStatement : RemoveSwitch 7 mutation → NO_COVERAGE 74. ForStatement : RemoveSwitch 70 mutation → NO_COVERAGE 75. ForStatement : RemoveSwitch 71 mutation → NO_COVERAGE 76. ForStatement : RemoveSwitch 72 mutation → NO_COVERAGE 77. ForStatement : RemoveSwitch 73 mutation → NO_COVERAGE 78. ForStatement : RemoveSwitch 74 mutation → NO_COVERAGE 79. ForStatement : RemoveSwitch 75 mutation → NO_COVERAGE 80. ForStatement : RemoveSwitch 76 mutation → NO_COVERAGE 81. ForStatement : RemoveSwitch 77 mutation → NO_COVERAGE 82. ForStatement : RemoveSwitch 78 mutation → NO_COVERAGE 83. ForStatement : RemoveSwitch 79 mutation → NO_COVERAGE 84. ForStatement : RemoveSwitch 8 mutation → NO_COVERAGE 85. ForStatement : RemoveSwitch 80 mutation → NO_COVERAGE 86. ForStatement : RemoveSwitch 81 mutation → NO_COVERAGE 87. ForStatement : RemoveSwitch 82 mutation → NO_COVERAGE 88. ForStatement : RemoveSwitch 83 mutation → NO_COVERAGE 89. ForStatement : RemoveSwitch 84 mutation → NO_COVERAGE 90. ForStatement : RemoveSwitch 85 mutation → NO_COVERAGE 91. ForStatement : RemoveSwitch 9 mutation → NO_COVERAGE 92. ForStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5394 | case BOOLEAN: | |
| 5395 | case BYTE: | |
| 5396 | case CHAR: | |
| 5397 | case DOUBLE: | |
| 5398 | case FALSE: | |
| 5399 | case FINAL: | |
| 5400 | case FLOAT: | |
| 5401 | case INT: | |
| 5402 | case LONG: | |
| 5403 | case NEW: | |
| 5404 | case NULL: | |
| 5405 | case SHORT: | |
| 5406 | case SUPER: | |
| 5407 | case THIS: | |
| 5408 | case TRUE: | |
| 5409 | case VOID: | |
| 5410 | case INTEGER_LITERAL: | |
| 5411 | case FLOATING_POINT_LITERAL: | |
| 5412 | case CHARACTER_LITERAL: | |
| 5413 | case STRING_LITERAL: | |
| 5414 | case IDENTIFIER: | |
| 5415 | case LPAREN: | |
| 5416 | case SEMICOLON: | |
| 5417 | case INCR: | |
| 5418 | case DECR: | |
| 5419 |
92
1. ForStatement : Substituted -1 with 0 → NO_COVERAGE 2. ForStatement : negated conditional → NO_COVERAGE 3. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ForStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. ForStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. ForStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. ForStatement : RemoveSwitch 1 mutation → NO_COVERAGE 8. ForStatement : RemoveSwitch 10 mutation → NO_COVERAGE 9. ForStatement : RemoveSwitch 11 mutation → NO_COVERAGE 10. ForStatement : RemoveSwitch 12 mutation → NO_COVERAGE 11. ForStatement : RemoveSwitch 13 mutation → NO_COVERAGE 12. ForStatement : RemoveSwitch 14 mutation → NO_COVERAGE 13. ForStatement : RemoveSwitch 15 mutation → NO_COVERAGE 14. ForStatement : RemoveSwitch 16 mutation → NO_COVERAGE 15. ForStatement : RemoveSwitch 17 mutation → NO_COVERAGE 16. ForStatement : RemoveSwitch 18 mutation → NO_COVERAGE 17. ForStatement : RemoveSwitch 19 mutation → NO_COVERAGE 18. ForStatement : RemoveSwitch 2 mutation → NO_COVERAGE 19. ForStatement : RemoveSwitch 20 mutation → NO_COVERAGE 20. ForStatement : RemoveSwitch 21 mutation → NO_COVERAGE 21. ForStatement : RemoveSwitch 22 mutation → NO_COVERAGE 22. ForStatement : RemoveSwitch 23 mutation → NO_COVERAGE 23. ForStatement : RemoveSwitch 24 mutation → NO_COVERAGE 24. ForStatement : RemoveSwitch 25 mutation → NO_COVERAGE 25. ForStatement : RemoveSwitch 26 mutation → NO_COVERAGE 26. ForStatement : RemoveSwitch 27 mutation → NO_COVERAGE 27. ForStatement : RemoveSwitch 28 mutation → NO_COVERAGE 28. ForStatement : RemoveSwitch 29 mutation → NO_COVERAGE 29. ForStatement : RemoveSwitch 3 mutation → NO_COVERAGE 30. ForStatement : RemoveSwitch 30 mutation → NO_COVERAGE 31. ForStatement : RemoveSwitch 31 mutation → NO_COVERAGE 32. ForStatement : RemoveSwitch 32 mutation → NO_COVERAGE 33. ForStatement : RemoveSwitch 33 mutation → NO_COVERAGE 34. ForStatement : RemoveSwitch 34 mutation → NO_COVERAGE 35. ForStatement : RemoveSwitch 35 mutation → NO_COVERAGE 36. ForStatement : RemoveSwitch 36 mutation → NO_COVERAGE 37. ForStatement : RemoveSwitch 37 mutation → NO_COVERAGE 38. ForStatement : RemoveSwitch 38 mutation → NO_COVERAGE 39. ForStatement : RemoveSwitch 39 mutation → NO_COVERAGE 40. ForStatement : RemoveSwitch 4 mutation → NO_COVERAGE 41. ForStatement : RemoveSwitch 40 mutation → NO_COVERAGE 42. ForStatement : RemoveSwitch 41 mutation → NO_COVERAGE 43. ForStatement : RemoveSwitch 42 mutation → NO_COVERAGE 44. ForStatement : RemoveSwitch 43 mutation → NO_COVERAGE 45. ForStatement : RemoveSwitch 44 mutation → NO_COVERAGE 46. ForStatement : RemoveSwitch 45 mutation → NO_COVERAGE 47. ForStatement : RemoveSwitch 46 mutation → NO_COVERAGE 48. ForStatement : RemoveSwitch 47 mutation → NO_COVERAGE 49. ForStatement : RemoveSwitch 48 mutation → NO_COVERAGE 50. ForStatement : RemoveSwitch 49 mutation → NO_COVERAGE 51. ForStatement : RemoveSwitch 5 mutation → NO_COVERAGE 52. ForStatement : RemoveSwitch 50 mutation → NO_COVERAGE 53. ForStatement : RemoveSwitch 51 mutation → NO_COVERAGE 54. ForStatement : RemoveSwitch 52 mutation → NO_COVERAGE 55. ForStatement : RemoveSwitch 53 mutation → NO_COVERAGE 56. ForStatement : RemoveSwitch 54 mutation → NO_COVERAGE 57. ForStatement : RemoveSwitch 55 mutation → NO_COVERAGE 58. ForStatement : RemoveSwitch 56 mutation → NO_COVERAGE 59. ForStatement : RemoveSwitch 57 mutation → NO_COVERAGE 60. ForStatement : RemoveSwitch 58 mutation → NO_COVERAGE 61. ForStatement : RemoveSwitch 59 mutation → NO_COVERAGE 62. ForStatement : RemoveSwitch 6 mutation → NO_COVERAGE 63. ForStatement : RemoveSwitch 60 mutation → NO_COVERAGE 64. ForStatement : RemoveSwitch 61 mutation → NO_COVERAGE 65. ForStatement : RemoveSwitch 62 mutation → NO_COVERAGE 66. ForStatement : RemoveSwitch 63 mutation → NO_COVERAGE 67. ForStatement : RemoveSwitch 64 mutation → NO_COVERAGE 68. ForStatement : RemoveSwitch 65 mutation → NO_COVERAGE 69. ForStatement : RemoveSwitch 66 mutation → NO_COVERAGE 70. ForStatement : RemoveSwitch 67 mutation → NO_COVERAGE 71. ForStatement : RemoveSwitch 68 mutation → NO_COVERAGE 72. ForStatement : RemoveSwitch 69 mutation → NO_COVERAGE 73. ForStatement : RemoveSwitch 7 mutation → NO_COVERAGE 74. ForStatement : RemoveSwitch 70 mutation → NO_COVERAGE 75. ForStatement : RemoveSwitch 71 mutation → NO_COVERAGE 76. ForStatement : RemoveSwitch 72 mutation → NO_COVERAGE 77. ForStatement : RemoveSwitch 73 mutation → NO_COVERAGE 78. ForStatement : RemoveSwitch 74 mutation → NO_COVERAGE 79. ForStatement : RemoveSwitch 75 mutation → NO_COVERAGE 80. ForStatement : RemoveSwitch 76 mutation → NO_COVERAGE 81. ForStatement : RemoveSwitch 77 mutation → NO_COVERAGE 82. ForStatement : RemoveSwitch 78 mutation → NO_COVERAGE 83. ForStatement : RemoveSwitch 79 mutation → NO_COVERAGE 84. ForStatement : RemoveSwitch 8 mutation → NO_COVERAGE 85. ForStatement : RemoveSwitch 80 mutation → NO_COVERAGE 86. ForStatement : RemoveSwitch 81 mutation → NO_COVERAGE 87. ForStatement : RemoveSwitch 82 mutation → NO_COVERAGE 88. ForStatement : RemoveSwitch 83 mutation → NO_COVERAGE 89. ForStatement : RemoveSwitch 84 mutation → NO_COVERAGE 90. ForStatement : RemoveSwitch 85 mutation → NO_COVERAGE 91. ForStatement : RemoveSwitch 9 mutation → NO_COVERAGE 92. ForStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5420 | case BOOLEAN: | |
| 5421 | case BYTE: | |
| 5422 | case CHAR: | |
| 5423 | case DOUBLE: | |
| 5424 | case FALSE: | |
| 5425 | case FINAL: | |
| 5426 | case FLOAT: | |
| 5427 | case INT: | |
| 5428 | case LONG: | |
| 5429 | case NEW: | |
| 5430 | case NULL: | |
| 5431 | case SHORT: | |
| 5432 | case SUPER: | |
| 5433 | case THIS: | |
| 5434 | case TRUE: | |
| 5435 | case VOID: | |
| 5436 | case INTEGER_LITERAL: | |
| 5437 | case FLOATING_POINT_LITERAL: | |
| 5438 | case CHARACTER_LITERAL: | |
| 5439 | case STRING_LITERAL: | |
| 5440 | case IDENTIFIER: | |
| 5441 | case LPAREN: | |
| 5442 | case INCR: | |
| 5443 | case DECR: | |
| 5444 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ForInit → NO_COVERAGE |
ForInit(); |
| 5445 | break; | |
| 5446 | default: | |
| 5447 | ; | |
| 5448 | } | |
| 5449 |
2
1. ForStatement : Substituted 83 with 84 → NO_COVERAGE 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 5450 |
94
1. ForStatement : Substituted -1 with 0 → NO_COVERAGE 2. ForStatement : negated conditional → NO_COVERAGE 3. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ForStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. ForStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. ForStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. ForStatement : RemoveSwitch 1 mutation → NO_COVERAGE 8. ForStatement : RemoveSwitch 10 mutation → NO_COVERAGE 9. ForStatement : RemoveSwitch 11 mutation → NO_COVERAGE 10. ForStatement : RemoveSwitch 12 mutation → NO_COVERAGE 11. ForStatement : RemoveSwitch 13 mutation → NO_COVERAGE 12. ForStatement : RemoveSwitch 14 mutation → NO_COVERAGE 13. ForStatement : RemoveSwitch 15 mutation → NO_COVERAGE 14. ForStatement : RemoveSwitch 16 mutation → NO_COVERAGE 15. ForStatement : RemoveSwitch 17 mutation → NO_COVERAGE 16. ForStatement : RemoveSwitch 18 mutation → NO_COVERAGE 17. ForStatement : RemoveSwitch 19 mutation → NO_COVERAGE 18. ForStatement : RemoveSwitch 2 mutation → NO_COVERAGE 19. ForStatement : RemoveSwitch 20 mutation → NO_COVERAGE 20. ForStatement : RemoveSwitch 21 mutation → NO_COVERAGE 21. ForStatement : RemoveSwitch 22 mutation → NO_COVERAGE 22. ForStatement : RemoveSwitch 23 mutation → NO_COVERAGE 23. ForStatement : RemoveSwitch 24 mutation → NO_COVERAGE 24. ForStatement : RemoveSwitch 25 mutation → NO_COVERAGE 25. ForStatement : RemoveSwitch 26 mutation → NO_COVERAGE 26. ForStatement : RemoveSwitch 27 mutation → NO_COVERAGE 27. ForStatement : RemoveSwitch 28 mutation → NO_COVERAGE 28. ForStatement : RemoveSwitch 29 mutation → NO_COVERAGE 29. ForStatement : RemoveSwitch 3 mutation → NO_COVERAGE 30. ForStatement : RemoveSwitch 30 mutation → NO_COVERAGE 31. ForStatement : RemoveSwitch 31 mutation → NO_COVERAGE 32. ForStatement : RemoveSwitch 32 mutation → NO_COVERAGE 33. ForStatement : RemoveSwitch 33 mutation → NO_COVERAGE 34. ForStatement : RemoveSwitch 34 mutation → NO_COVERAGE 35. ForStatement : RemoveSwitch 35 mutation → NO_COVERAGE 36. ForStatement : RemoveSwitch 36 mutation → NO_COVERAGE 37. ForStatement : RemoveSwitch 37 mutation → NO_COVERAGE 38. ForStatement : RemoveSwitch 38 mutation → NO_COVERAGE 39. ForStatement : RemoveSwitch 39 mutation → NO_COVERAGE 40. ForStatement : RemoveSwitch 4 mutation → NO_COVERAGE 41. ForStatement : RemoveSwitch 40 mutation → NO_COVERAGE 42. ForStatement : RemoveSwitch 41 mutation → NO_COVERAGE 43. ForStatement : RemoveSwitch 42 mutation → NO_COVERAGE 44. ForStatement : RemoveSwitch 43 mutation → NO_COVERAGE 45. ForStatement : RemoveSwitch 44 mutation → NO_COVERAGE 46. ForStatement : RemoveSwitch 45 mutation → NO_COVERAGE 47. ForStatement : RemoveSwitch 46 mutation → NO_COVERAGE 48. ForStatement : RemoveSwitch 47 mutation → NO_COVERAGE 49. ForStatement : RemoveSwitch 48 mutation → NO_COVERAGE 50. ForStatement : RemoveSwitch 49 mutation → NO_COVERAGE 51. ForStatement : RemoveSwitch 5 mutation → NO_COVERAGE 52. ForStatement : RemoveSwitch 50 mutation → NO_COVERAGE 53. ForStatement : RemoveSwitch 51 mutation → NO_COVERAGE 54. ForStatement : RemoveSwitch 52 mutation → NO_COVERAGE 55. ForStatement : RemoveSwitch 53 mutation → NO_COVERAGE 56. ForStatement : RemoveSwitch 54 mutation → NO_COVERAGE 57. ForStatement : RemoveSwitch 55 mutation → NO_COVERAGE 58. ForStatement : RemoveSwitch 56 mutation → NO_COVERAGE 59. ForStatement : RemoveSwitch 57 mutation → NO_COVERAGE 60. ForStatement : RemoveSwitch 58 mutation → NO_COVERAGE 61. ForStatement : RemoveSwitch 59 mutation → NO_COVERAGE 62. ForStatement : RemoveSwitch 6 mutation → NO_COVERAGE 63. ForStatement : RemoveSwitch 60 mutation → NO_COVERAGE 64. ForStatement : RemoveSwitch 61 mutation → NO_COVERAGE 65. ForStatement : RemoveSwitch 62 mutation → NO_COVERAGE 66. ForStatement : RemoveSwitch 63 mutation → NO_COVERAGE 67. ForStatement : RemoveSwitch 64 mutation → NO_COVERAGE 68. ForStatement : RemoveSwitch 65 mutation → NO_COVERAGE 69. ForStatement : RemoveSwitch 66 mutation → NO_COVERAGE 70. ForStatement : RemoveSwitch 67 mutation → NO_COVERAGE 71. ForStatement : RemoveSwitch 68 mutation → NO_COVERAGE 72. ForStatement : RemoveSwitch 69 mutation → NO_COVERAGE 73. ForStatement : RemoveSwitch 7 mutation → NO_COVERAGE 74. ForStatement : RemoveSwitch 70 mutation → NO_COVERAGE 75. ForStatement : RemoveSwitch 71 mutation → NO_COVERAGE 76. ForStatement : RemoveSwitch 72 mutation → NO_COVERAGE 77. ForStatement : RemoveSwitch 73 mutation → NO_COVERAGE 78. ForStatement : RemoveSwitch 74 mutation → NO_COVERAGE 79. ForStatement : RemoveSwitch 75 mutation → NO_COVERAGE 80. ForStatement : RemoveSwitch 76 mutation → NO_COVERAGE 81. ForStatement : RemoveSwitch 77 mutation → NO_COVERAGE 82. ForStatement : RemoveSwitch 78 mutation → NO_COVERAGE 83. ForStatement : RemoveSwitch 79 mutation → NO_COVERAGE 84. ForStatement : RemoveSwitch 8 mutation → NO_COVERAGE 85. ForStatement : RemoveSwitch 80 mutation → NO_COVERAGE 86. ForStatement : RemoveSwitch 81 mutation → NO_COVERAGE 87. ForStatement : RemoveSwitch 82 mutation → NO_COVERAGE 88. ForStatement : RemoveSwitch 83 mutation → NO_COVERAGE 89. ForStatement : RemoveSwitch 84 mutation → NO_COVERAGE 90. ForStatement : RemoveSwitch 85 mutation → NO_COVERAGE 91. ForStatement : RemoveSwitch 86 mutation → NO_COVERAGE 92. ForStatement : RemoveSwitch 87 mutation → NO_COVERAGE 93. ForStatement : RemoveSwitch 9 mutation → NO_COVERAGE 94. ForStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5451 | case BOOLEAN: | |
| 5452 | case BYTE: | |
| 5453 | case CHAR: | |
| 5454 | case DOUBLE: | |
| 5455 | case FALSE: | |
| 5456 | case FLOAT: | |
| 5457 | case INT: | |
| 5458 | case LONG: | |
| 5459 | case NEW: | |
| 5460 | case NULL: | |
| 5461 | case SHORT: | |
| 5462 | case SUPER: | |
| 5463 | case THIS: | |
| 5464 | case TRUE: | |
| 5465 | case VOID: | |
| 5466 | case INTEGER_LITERAL: | |
| 5467 | case FLOATING_POINT_LITERAL: | |
| 5468 | case CHARACTER_LITERAL: | |
| 5469 | case STRING_LITERAL: | |
| 5470 | case IDENTIFIER: | |
| 5471 | case LPAREN: | |
| 5472 | case BANG: | |
| 5473 | case TILDE: | |
| 5474 | case INCR: | |
| 5475 | case DECR: | |
| 5476 | case PLUS: | |
| 5477 | case MINUS: | |
| 5478 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 5479 | break; | |
| 5480 | default: | |
| 5481 | ; | |
| 5482 | } | |
| 5483 |
2
1. ForStatement : Substituted 83 with 84 → NO_COVERAGE 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 5484 |
92
1. ForStatement : Substituted -1 with 0 → NO_COVERAGE 2. ForStatement : negated conditional → NO_COVERAGE 3. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ForStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. ForStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. ForStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. ForStatement : RemoveSwitch 1 mutation → NO_COVERAGE 8. ForStatement : RemoveSwitch 10 mutation → NO_COVERAGE 9. ForStatement : RemoveSwitch 11 mutation → NO_COVERAGE 10. ForStatement : RemoveSwitch 12 mutation → NO_COVERAGE 11. ForStatement : RemoveSwitch 13 mutation → NO_COVERAGE 12. ForStatement : RemoveSwitch 14 mutation → NO_COVERAGE 13. ForStatement : RemoveSwitch 15 mutation → NO_COVERAGE 14. ForStatement : RemoveSwitch 16 mutation → NO_COVERAGE 15. ForStatement : RemoveSwitch 17 mutation → NO_COVERAGE 16. ForStatement : RemoveSwitch 18 mutation → NO_COVERAGE 17. ForStatement : RemoveSwitch 19 mutation → NO_COVERAGE 18. ForStatement : RemoveSwitch 2 mutation → NO_COVERAGE 19. ForStatement : RemoveSwitch 20 mutation → NO_COVERAGE 20. ForStatement : RemoveSwitch 21 mutation → NO_COVERAGE 21. ForStatement : RemoveSwitch 22 mutation → NO_COVERAGE 22. ForStatement : RemoveSwitch 23 mutation → NO_COVERAGE 23. ForStatement : RemoveSwitch 24 mutation → NO_COVERAGE 24. ForStatement : RemoveSwitch 25 mutation → NO_COVERAGE 25. ForStatement : RemoveSwitch 26 mutation → NO_COVERAGE 26. ForStatement : RemoveSwitch 27 mutation → NO_COVERAGE 27. ForStatement : RemoveSwitch 28 mutation → NO_COVERAGE 28. ForStatement : RemoveSwitch 29 mutation → NO_COVERAGE 29. ForStatement : RemoveSwitch 3 mutation → NO_COVERAGE 30. ForStatement : RemoveSwitch 30 mutation → NO_COVERAGE 31. ForStatement : RemoveSwitch 31 mutation → NO_COVERAGE 32. ForStatement : RemoveSwitch 32 mutation → NO_COVERAGE 33. ForStatement : RemoveSwitch 33 mutation → NO_COVERAGE 34. ForStatement : RemoveSwitch 34 mutation → NO_COVERAGE 35. ForStatement : RemoveSwitch 35 mutation → NO_COVERAGE 36. ForStatement : RemoveSwitch 36 mutation → NO_COVERAGE 37. ForStatement : RemoveSwitch 37 mutation → NO_COVERAGE 38. ForStatement : RemoveSwitch 38 mutation → NO_COVERAGE 39. ForStatement : RemoveSwitch 39 mutation → NO_COVERAGE 40. ForStatement : RemoveSwitch 4 mutation → NO_COVERAGE 41. ForStatement : RemoveSwitch 40 mutation → NO_COVERAGE 42. ForStatement : RemoveSwitch 41 mutation → NO_COVERAGE 43. ForStatement : RemoveSwitch 42 mutation → NO_COVERAGE 44. ForStatement : RemoveSwitch 43 mutation → NO_COVERAGE 45. ForStatement : RemoveSwitch 44 mutation → NO_COVERAGE 46. ForStatement : RemoveSwitch 45 mutation → NO_COVERAGE 47. ForStatement : RemoveSwitch 46 mutation → NO_COVERAGE 48. ForStatement : RemoveSwitch 47 mutation → NO_COVERAGE 49. ForStatement : RemoveSwitch 48 mutation → NO_COVERAGE 50. ForStatement : RemoveSwitch 49 mutation → NO_COVERAGE 51. ForStatement : RemoveSwitch 5 mutation → NO_COVERAGE 52. ForStatement : RemoveSwitch 50 mutation → NO_COVERAGE 53. ForStatement : RemoveSwitch 51 mutation → NO_COVERAGE 54. ForStatement : RemoveSwitch 52 mutation → NO_COVERAGE 55. ForStatement : RemoveSwitch 53 mutation → NO_COVERAGE 56. ForStatement : RemoveSwitch 54 mutation → NO_COVERAGE 57. ForStatement : RemoveSwitch 55 mutation → NO_COVERAGE 58. ForStatement : RemoveSwitch 56 mutation → NO_COVERAGE 59. ForStatement : RemoveSwitch 57 mutation → NO_COVERAGE 60. ForStatement : RemoveSwitch 58 mutation → NO_COVERAGE 61. ForStatement : RemoveSwitch 59 mutation → NO_COVERAGE 62. ForStatement : RemoveSwitch 6 mutation → NO_COVERAGE 63. ForStatement : RemoveSwitch 60 mutation → NO_COVERAGE 64. ForStatement : RemoveSwitch 61 mutation → NO_COVERAGE 65. ForStatement : RemoveSwitch 62 mutation → NO_COVERAGE 66. ForStatement : RemoveSwitch 63 mutation → NO_COVERAGE 67. ForStatement : RemoveSwitch 64 mutation → NO_COVERAGE 68. ForStatement : RemoveSwitch 65 mutation → NO_COVERAGE 69. ForStatement : RemoveSwitch 66 mutation → NO_COVERAGE 70. ForStatement : RemoveSwitch 67 mutation → NO_COVERAGE 71. ForStatement : RemoveSwitch 68 mutation → NO_COVERAGE 72. ForStatement : RemoveSwitch 69 mutation → NO_COVERAGE 73. ForStatement : RemoveSwitch 7 mutation → NO_COVERAGE 74. ForStatement : RemoveSwitch 70 mutation → NO_COVERAGE 75. ForStatement : RemoveSwitch 71 mutation → NO_COVERAGE 76. ForStatement : RemoveSwitch 72 mutation → NO_COVERAGE 77. ForStatement : RemoveSwitch 73 mutation → NO_COVERAGE 78. ForStatement : RemoveSwitch 74 mutation → NO_COVERAGE 79. ForStatement : RemoveSwitch 75 mutation → NO_COVERAGE 80. ForStatement : RemoveSwitch 76 mutation → NO_COVERAGE 81. ForStatement : RemoveSwitch 77 mutation → NO_COVERAGE 82. ForStatement : RemoveSwitch 78 mutation → NO_COVERAGE 83. ForStatement : RemoveSwitch 79 mutation → NO_COVERAGE 84. ForStatement : RemoveSwitch 8 mutation → NO_COVERAGE 85. ForStatement : RemoveSwitch 80 mutation → NO_COVERAGE 86. ForStatement : RemoveSwitch 81 mutation → NO_COVERAGE 87. ForStatement : RemoveSwitch 82 mutation → NO_COVERAGE 88. ForStatement : RemoveSwitch 83 mutation → NO_COVERAGE 89. ForStatement : RemoveSwitch 84 mutation → NO_COVERAGE 90. ForStatement : RemoveSwitch 85 mutation → NO_COVERAGE 91. ForStatement : RemoveSwitch 9 mutation → NO_COVERAGE 92. ForStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5485 | case BOOLEAN: | |
| 5486 | case BYTE: | |
| 5487 | case CHAR: | |
| 5488 | case DOUBLE: | |
| 5489 | case FALSE: | |
| 5490 | case FLOAT: | |
| 5491 | case INT: | |
| 5492 | case LONG: | |
| 5493 | case NEW: | |
| 5494 | case NULL: | |
| 5495 | case SHORT: | |
| 5496 | case SUPER: | |
| 5497 | case THIS: | |
| 5498 | case TRUE: | |
| 5499 | case VOID: | |
| 5500 | case INTEGER_LITERAL: | |
| 5501 | case FLOATING_POINT_LITERAL: | |
| 5502 | case CHARACTER_LITERAL: | |
| 5503 | case STRING_LITERAL: | |
| 5504 | case IDENTIFIER: | |
| 5505 | case LPAREN: | |
| 5506 | case INCR: | |
| 5507 | case DECR: | |
| 5508 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ForUpdate → NO_COVERAGE |
ForUpdate(); |
| 5509 | break; | |
| 5510 | default: | |
| 5511 | ; | |
| 5512 | } | |
| 5513 | break; | |
| 5514 | default: | |
| 5515 |
2
1. ForStatement : Substituted -1 with 0 → NO_COVERAGE 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 5516 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 5517 | } | |
| 5518 | } | |
| 5519 |
2
1. ForStatement : Substituted 78 with 79 → NO_COVERAGE 2. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 5520 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Statement → NO_COVERAGE |
Statement(); |
| 5521 | } catch (Throwable jjte000) { | |
| 5522 |
3
1. ForStatement : removed conditional - replaced equality check with true → SURVIVED 2. ForStatement : negated conditional → KILLED 3. ForStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5523 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5524 |
1
1. ForStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5525 | } else { | |
| 5526 |
1
1. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5527 | } | |
| 5528 |
3
1. ForStatement : removed conditional - replaced equality check with true → SURVIVED 2. ForStatement : negated conditional → KILLED 3. ForStatement : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 5529 | { | |
| 5530 | if (true) { | |
| 5531 | throw (RuntimeException) jjte000; | |
| 5532 | } | |
| 5533 | } | |
| 5534 | } | |
| 5535 |
3
1. ForStatement : negated conditional → SURVIVED 2. ForStatement : removed conditional - replaced equality check with false → SURVIVED 3. ForStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5536 | { | |
| 5537 | if (true) { | |
| 5538 | throw (ParseException) jjte000; | |
| 5539 | } | |
| 5540 | } | |
| 5541 | } | |
| 5542 | { | |
| 5543 | if (true) { | |
| 5544 | throw (Error) jjte000; | |
| 5545 | } | |
| 5546 | } | |
| 5547 | } finally { | |
| 5548 |
6
1. ForStatement : negated conditional → SURVIVED 2. ForStatement : removed conditional - replaced equality check with false → SURVIVED 3. ForStatement : removed conditional - replaced equality check with false → SURVIVED 4. ForStatement : removed conditional - replaced equality check with true → SURVIVED 5. ForStatement : negated conditional → KILLED 6. ForStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5549 |
4
1. ForStatement : Substituted 1 with 0 → SURVIVED 2. ForStatement : Substituted 1 with 0 → SURVIVED 3. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ForStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5550 | } | |
| 5551 | } | |
| 5552 | } | |
| 5553 | ||
| 5554 | final public void ForInit() throws ParseException { | |
| 5555 | /*@bgen(jjtree) ForInit */ | |
| 5556 |
2
1. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. ForInit : Substituted 84 with 85 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTFORINIT); |
| 5557 |
1
1. ForInit : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 5558 |
1
1. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 5559 | try { | |
| 5560 |
5
1. ForInit : Substituted 2147483647 with -2147483648 → NO_COVERAGE 2. ForInit : negated conditional → NO_COVERAGE 3. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_36 → NO_COVERAGE 4. ForInit : removed conditional - replaced equality check with false → NO_COVERAGE 5. ForInit : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_36(2147483647)) { |
| 5561 |
1
1. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::LocalVariableDeclaration → NO_COVERAGE |
LocalVariableDeclaration(); |
| 5562 | } else { | |
| 5563 |
92
1. ForInit : Substituted -1 with 0 → NO_COVERAGE 2. ForInit : negated conditional → NO_COVERAGE 3. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. ForInit : removed conditional - replaced equality check with false → NO_COVERAGE 5. ForInit : removed conditional - replaced equality check with true → NO_COVERAGE 6. ForInit : RemoveSwitch 0 mutation → NO_COVERAGE 7. ForInit : RemoveSwitch 1 mutation → NO_COVERAGE 8. ForInit : RemoveSwitch 10 mutation → NO_COVERAGE 9. ForInit : RemoveSwitch 11 mutation → NO_COVERAGE 10. ForInit : RemoveSwitch 12 mutation → NO_COVERAGE 11. ForInit : RemoveSwitch 13 mutation → NO_COVERAGE 12. ForInit : RemoveSwitch 14 mutation → NO_COVERAGE 13. ForInit : RemoveSwitch 15 mutation → NO_COVERAGE 14. ForInit : RemoveSwitch 16 mutation → NO_COVERAGE 15. ForInit : RemoveSwitch 17 mutation → NO_COVERAGE 16. ForInit : RemoveSwitch 18 mutation → NO_COVERAGE 17. ForInit : RemoveSwitch 19 mutation → NO_COVERAGE 18. ForInit : RemoveSwitch 2 mutation → NO_COVERAGE 19. ForInit : RemoveSwitch 20 mutation → NO_COVERAGE 20. ForInit : RemoveSwitch 21 mutation → NO_COVERAGE 21. ForInit : RemoveSwitch 22 mutation → NO_COVERAGE 22. ForInit : RemoveSwitch 23 mutation → NO_COVERAGE 23. ForInit : RemoveSwitch 24 mutation → NO_COVERAGE 24. ForInit : RemoveSwitch 25 mutation → NO_COVERAGE 25. ForInit : RemoveSwitch 26 mutation → NO_COVERAGE 26. ForInit : RemoveSwitch 27 mutation → NO_COVERAGE 27. ForInit : RemoveSwitch 28 mutation → NO_COVERAGE 28. ForInit : RemoveSwitch 29 mutation → NO_COVERAGE 29. ForInit : RemoveSwitch 3 mutation → NO_COVERAGE 30. ForInit : RemoveSwitch 30 mutation → NO_COVERAGE 31. ForInit : RemoveSwitch 31 mutation → NO_COVERAGE 32. ForInit : RemoveSwitch 32 mutation → NO_COVERAGE 33. ForInit : RemoveSwitch 33 mutation → NO_COVERAGE 34. ForInit : RemoveSwitch 34 mutation → NO_COVERAGE 35. ForInit : RemoveSwitch 35 mutation → NO_COVERAGE 36. ForInit : RemoveSwitch 36 mutation → NO_COVERAGE 37. ForInit : RemoveSwitch 37 mutation → NO_COVERAGE 38. ForInit : RemoveSwitch 38 mutation → NO_COVERAGE 39. ForInit : RemoveSwitch 39 mutation → NO_COVERAGE 40. ForInit : RemoveSwitch 4 mutation → NO_COVERAGE 41. ForInit : RemoveSwitch 40 mutation → NO_COVERAGE 42. ForInit : RemoveSwitch 41 mutation → NO_COVERAGE 43. ForInit : RemoveSwitch 42 mutation → NO_COVERAGE 44. ForInit : RemoveSwitch 43 mutation → NO_COVERAGE 45. ForInit : RemoveSwitch 44 mutation → NO_COVERAGE 46. ForInit : RemoveSwitch 45 mutation → NO_COVERAGE 47. ForInit : RemoveSwitch 46 mutation → NO_COVERAGE 48. ForInit : RemoveSwitch 47 mutation → NO_COVERAGE 49. ForInit : RemoveSwitch 48 mutation → NO_COVERAGE 50. ForInit : RemoveSwitch 49 mutation → NO_COVERAGE 51. ForInit : RemoveSwitch 5 mutation → NO_COVERAGE 52. ForInit : RemoveSwitch 50 mutation → NO_COVERAGE 53. ForInit : RemoveSwitch 51 mutation → NO_COVERAGE 54. ForInit : RemoveSwitch 52 mutation → NO_COVERAGE 55. ForInit : RemoveSwitch 53 mutation → NO_COVERAGE 56. ForInit : RemoveSwitch 54 mutation → NO_COVERAGE 57. ForInit : RemoveSwitch 55 mutation → NO_COVERAGE 58. ForInit : RemoveSwitch 56 mutation → NO_COVERAGE 59. ForInit : RemoveSwitch 57 mutation → NO_COVERAGE 60. ForInit : RemoveSwitch 58 mutation → NO_COVERAGE 61. ForInit : RemoveSwitch 59 mutation → NO_COVERAGE 62. ForInit : RemoveSwitch 6 mutation → NO_COVERAGE 63. ForInit : RemoveSwitch 60 mutation → NO_COVERAGE 64. ForInit : RemoveSwitch 61 mutation → NO_COVERAGE 65. ForInit : RemoveSwitch 62 mutation → NO_COVERAGE 66. ForInit : RemoveSwitch 63 mutation → NO_COVERAGE 67. ForInit : RemoveSwitch 64 mutation → NO_COVERAGE 68. ForInit : RemoveSwitch 65 mutation → NO_COVERAGE 69. ForInit : RemoveSwitch 66 mutation → NO_COVERAGE 70. ForInit : RemoveSwitch 67 mutation → NO_COVERAGE 71. ForInit : RemoveSwitch 68 mutation → NO_COVERAGE 72. ForInit : RemoveSwitch 69 mutation → NO_COVERAGE 73. ForInit : RemoveSwitch 7 mutation → NO_COVERAGE 74. ForInit : RemoveSwitch 70 mutation → NO_COVERAGE 75. ForInit : RemoveSwitch 71 mutation → NO_COVERAGE 76. ForInit : RemoveSwitch 72 mutation → NO_COVERAGE 77. ForInit : RemoveSwitch 73 mutation → NO_COVERAGE 78. ForInit : RemoveSwitch 74 mutation → NO_COVERAGE 79. ForInit : RemoveSwitch 75 mutation → NO_COVERAGE 80. ForInit : RemoveSwitch 76 mutation → NO_COVERAGE 81. ForInit : RemoveSwitch 77 mutation → NO_COVERAGE 82. ForInit : RemoveSwitch 78 mutation → NO_COVERAGE 83. ForInit : RemoveSwitch 79 mutation → NO_COVERAGE 84. ForInit : RemoveSwitch 8 mutation → NO_COVERAGE 85. ForInit : RemoveSwitch 80 mutation → NO_COVERAGE 86. ForInit : RemoveSwitch 81 mutation → NO_COVERAGE 87. ForInit : RemoveSwitch 82 mutation → NO_COVERAGE 88. ForInit : RemoveSwitch 83 mutation → NO_COVERAGE 89. ForInit : RemoveSwitch 84 mutation → NO_COVERAGE 90. ForInit : RemoveSwitch 85 mutation → NO_COVERAGE 91. ForInit : RemoveSwitch 9 mutation → NO_COVERAGE 92. ForInit : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5564 | case BOOLEAN: | |
| 5565 | case BYTE: | |
| 5566 | case CHAR: | |
| 5567 | case DOUBLE: | |
| 5568 | case FALSE: | |
| 5569 | case FLOAT: | |
| 5570 | case INT: | |
| 5571 | case LONG: | |
| 5572 | case NEW: | |
| 5573 | case NULL: | |
| 5574 | case SHORT: | |
| 5575 | case SUPER: | |
| 5576 | case THIS: | |
| 5577 | case TRUE: | |
| 5578 | case VOID: | |
| 5579 | case INTEGER_LITERAL: | |
| 5580 | case FLOATING_POINT_LITERAL: | |
| 5581 | case CHARACTER_LITERAL: | |
| 5582 | case STRING_LITERAL: | |
| 5583 | case IDENTIFIER: | |
| 5584 | case LPAREN: | |
| 5585 | case INCR: | |
| 5586 | case DECR: | |
| 5587 |
1
1. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::StatementExpressionList → NO_COVERAGE |
StatementExpressionList(); |
| 5588 | break; | |
| 5589 | default: | |
| 5590 |
2
1. ForInit : Substituted -1 with 0 → NO_COVERAGE 2. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 5591 |
1
1. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 5592 | } | |
| 5593 | } | |
| 5594 | } catch (Throwable jjte000) { | |
| 5595 |
3
1. ForInit : negated conditional → NO_COVERAGE 2. ForInit : removed conditional - replaced equality check with false → NO_COVERAGE 3. ForInit : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 5596 |
1
1. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 5597 |
1
1. ForInit : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 5598 | } else { | |
| 5599 |
1
1. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5600 | } | |
| 5601 |
3
1. ForInit : negated conditional → NO_COVERAGE 2. ForInit : removed conditional - replaced equality check with false → NO_COVERAGE 3. ForInit : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 5602 | { | |
| 5603 | if (true) { | |
| 5604 | throw (RuntimeException) jjte000; | |
| 5605 | } | |
| 5606 | } | |
| 5607 | } | |
| 5608 |
3
1. ForInit : negated conditional → NO_COVERAGE 2. ForInit : removed conditional - replaced equality check with false → NO_COVERAGE 3. ForInit : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 5609 | { | |
| 5610 | if (true) { | |
| 5611 | throw (ParseException) jjte000; | |
| 5612 | } | |
| 5613 | } | |
| 5614 | } | |
| 5615 | { | |
| 5616 | if (true) { | |
| 5617 | throw (Error) jjte000; | |
| 5618 | } | |
| 5619 | } | |
| 5620 | } finally { | |
| 5621 |
6
1. ForInit : negated conditional → NO_COVERAGE 2. ForInit : negated conditional → NO_COVERAGE 3. ForInit : removed conditional - replaced equality check with false → NO_COVERAGE 4. ForInit : removed conditional - replaced equality check with false → NO_COVERAGE 5. ForInit : removed conditional - replaced equality check with true → NO_COVERAGE 6. ForInit : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 5622 |
4
1. ForInit : Substituted 1 with 0 → NO_COVERAGE 2. ForInit : Substituted 1 with 0 → NO_COVERAGE 3. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. ForInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 5623 | } | |
| 5624 | } | |
| 5625 | } | |
| 5626 | ||
| 5627 | final public void StatementExpressionList() throws ParseException { | |
| 5628 | /*@bgen(jjtree) StatementExpressionList */ | |
| 5629 |
2
1. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. StatementExpressionList : Substituted 85 with 86 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSTATEMENTEXPRESSIONLIST); |
| 5630 |
1
1. StatementExpressionList : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5631 |
1
1. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5632 | try { | |
| 5633 |
1
1. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::StatementExpression → KILLED |
StatementExpression(); |
| 5634 | label_42:while (true) { | |
| 5635 |
7
1. StatementExpressionList : Substituted -1 with 0 → NO_COVERAGE 2. StatementExpressionList : negated conditional → NO_COVERAGE 3. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. StatementExpressionList : removed conditional - replaced equality check with false → NO_COVERAGE 5. StatementExpressionList : removed conditional - replaced equality check with true → NO_COVERAGE 6. StatementExpressionList : RemoveSwitch 0 mutation → NO_COVERAGE 7. StatementExpressionList : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5636 | case COMMA: | |
| 5637 | ; | |
| 5638 | break; | |
| 5639 | default: | |
| 5640 | break label_42; | |
| 5641 | } | |
| 5642 |
2
1. StatementExpressionList : Substituted 84 with 85 → NO_COVERAGE 2. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 5643 |
1
1. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::StatementExpression → NO_COVERAGE |
StatementExpression(); |
| 5644 | } | |
| 5645 | } catch (Throwable jjte000) { | |
| 5646 |
3
1. StatementExpressionList : removed conditional - replaced equality check with true → SURVIVED 2. StatementExpressionList : negated conditional → KILLED 3. StatementExpressionList : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5647 |
1
1. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5648 |
1
1. StatementExpressionList : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5649 | } else { | |
| 5650 |
1
1. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5651 | } | |
| 5652 |
3
1. StatementExpressionList : negated conditional → SURVIVED 2. StatementExpressionList : removed conditional - replaced equality check with false → SURVIVED 3. StatementExpressionList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5653 | { | |
| 5654 | if (true) { | |
| 5655 | throw (RuntimeException) jjte000; | |
| 5656 | } | |
| 5657 | } | |
| 5658 | } | |
| 5659 |
3
1. StatementExpressionList : negated conditional → SURVIVED 2. StatementExpressionList : removed conditional - replaced equality check with false → SURVIVED 3. StatementExpressionList : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5660 | { | |
| 5661 | if (true) { | |
| 5662 | throw (ParseException) jjte000; | |
| 5663 | } | |
| 5664 | } | |
| 5665 | } | |
| 5666 | { | |
| 5667 | if (true) { | |
| 5668 | throw (Error) jjte000; | |
| 5669 | } | |
| 5670 | } | |
| 5671 | } finally { | |
| 5672 |
6
1. StatementExpressionList : negated conditional → SURVIVED 2. StatementExpressionList : removed conditional - replaced equality check with false → SURVIVED 3. StatementExpressionList : removed conditional - replaced equality check with false → SURVIVED 4. StatementExpressionList : removed conditional - replaced equality check with true → SURVIVED 5. StatementExpressionList : negated conditional → KILLED 6. StatementExpressionList : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5673 |
4
1. StatementExpressionList : Substituted 1 with 0 → SURVIVED 2. StatementExpressionList : Substituted 1 with 0 → SURVIVED 3. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. StatementExpressionList : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5674 | } | |
| 5675 | } | |
| 5676 | } | |
| 5677 | ||
| 5678 | final public void ForUpdate() throws ParseException { | |
| 5679 | /*@bgen(jjtree) ForUpdate */ | |
| 5680 |
2
1. ForUpdate : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ForUpdate : Substituted 86 with 87 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTFORUPDATE); |
| 5681 |
1
1. ForUpdate : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5682 |
1
1. ForUpdate : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5683 | try { | |
| 5684 |
1
1. ForUpdate : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::StatementExpressionList → KILLED |
StatementExpressionList(); |
| 5685 | } catch (Throwable jjte000) { | |
| 5686 |
3
1. ForUpdate : removed conditional - replaced equality check with true → SURVIVED 2. ForUpdate : negated conditional → KILLED 3. ForUpdate : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5687 |
1
1. ForUpdate : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5688 |
1
1. ForUpdate : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5689 | } else { | |
| 5690 |
1
1. ForUpdate : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5691 | } | |
| 5692 |
3
1. ForUpdate : negated conditional → SURVIVED 2. ForUpdate : removed conditional - replaced equality check with false → SURVIVED 3. ForUpdate : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5693 | { | |
| 5694 | if (true) { | |
| 5695 | throw (RuntimeException) jjte000; | |
| 5696 | } | |
| 5697 | } | |
| 5698 | } | |
| 5699 |
3
1. ForUpdate : negated conditional → SURVIVED 2. ForUpdate : removed conditional - replaced equality check with false → SURVIVED 3. ForUpdate : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5700 | { | |
| 5701 | if (true) { | |
| 5702 | throw (ParseException) jjte000; | |
| 5703 | } | |
| 5704 | } | |
| 5705 | } | |
| 5706 | { | |
| 5707 | if (true) { | |
| 5708 | throw (Error) jjte000; | |
| 5709 | } | |
| 5710 | } | |
| 5711 | } finally { | |
| 5712 |
6
1. ForUpdate : negated conditional → SURVIVED 2. ForUpdate : removed conditional - replaced equality check with false → SURVIVED 3. ForUpdate : removed conditional - replaced equality check with false → SURVIVED 4. ForUpdate : removed conditional - replaced equality check with true → SURVIVED 5. ForUpdate : negated conditional → KILLED 6. ForUpdate : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5713 |
4
1. ForUpdate : Substituted 1 with 0 → SURVIVED 2. ForUpdate : Substituted 1 with 0 → SURVIVED 3. ForUpdate : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ForUpdate : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5714 | } | |
| 5715 | } | |
| 5716 | } | |
| 5717 | ||
| 5718 | final public void BreakStatement() throws ParseException { | |
| 5719 | /*@bgen(jjtree) BreakStatement */ | |
| 5720 |
2
1. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. BreakStatement : Substituted 87 with 88 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTBREAKSTATEMENT); |
| 5721 |
1
1. BreakStatement : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 5722 |
1
1. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5723 | try { | |
| 5724 |
2
1. BreakStatement : Substituted 16 with 17 → SURVIVED 2. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → KILLED |
jj_consume_token(BREAK); |
| 5725 |
7
1. BreakStatement : Substituted -1 with 0 → SURVIVED 2. BreakStatement : negated conditional → SURVIVED 3. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. BreakStatement : removed conditional - replaced equality check with false → SURVIVED 5. BreakStatement : removed conditional - replaced equality check with true → SURVIVED 6. BreakStatement : RemoveSwitch 0 mutation → SURVIVED 7. BreakStatement : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5726 | case IDENTIFIER: | |
| 5727 |
2
1. BreakStatement : Substituted 74 with 75 → NO_COVERAGE 2. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 5728 | break; | |
| 5729 | default: | |
| 5730 | ; | |
| 5731 | } | |
| 5732 |
2
1. BreakStatement : Substituted 83 with 84 → NO_COVERAGE 2. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 5733 | } finally { | |
| 5734 |
6
1. BreakStatement : negated conditional → SURVIVED 2. BreakStatement : negated conditional → SURVIVED 3. BreakStatement : removed conditional - replaced equality check with false → SURVIVED 4. BreakStatement : removed conditional - replaced equality check with false → SURVIVED 5. BreakStatement : removed conditional - replaced equality check with true → SURVIVED 6. BreakStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 5735 |
4
1. BreakStatement : Substituted 1 with 0 → SURVIVED 2. BreakStatement : Substituted 1 with 0 → SURVIVED 3. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. BreakStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5736 | } | |
| 5737 | } | |
| 5738 | } | |
| 5739 | ||
| 5740 | final public void ContinueStatement() throws ParseException { | |
| 5741 | /*@bgen(jjtree) ContinueStatement */ | |
| 5742 |
2
1. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ContinueStatement : Substituted 88 with 89 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTCONTINUESTATEMENT); |
| 5743 |
1
1. ContinueStatement : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 5744 |
1
1. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5745 | try { | |
| 5746 |
2
1. ContinueStatement : Substituted 23 with 24 → SURVIVED 2. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(CONTINUE); |
| 5747 |
7
1. ContinueStatement : Substituted -1 with 0 → SURVIVED 2. ContinueStatement : negated conditional → SURVIVED 3. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ContinueStatement : removed conditional - replaced equality check with false → SURVIVED 5. ContinueStatement : removed conditional - replaced equality check with true → SURVIVED 6. ContinueStatement : RemoveSwitch 0 mutation → SURVIVED 7. ContinueStatement : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5748 | case IDENTIFIER: | |
| 5749 |
2
1. ContinueStatement : Substituted 74 with 75 → NO_COVERAGE 2. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 5750 | break; | |
| 5751 | default: | |
| 5752 | ; | |
| 5753 | } | |
| 5754 |
2
1. ContinueStatement : Substituted 83 with 84 → NO_COVERAGE 2. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 5755 | } finally { | |
| 5756 |
6
1. ContinueStatement : negated conditional → SURVIVED 2. ContinueStatement : negated conditional → SURVIVED 3. ContinueStatement : removed conditional - replaced equality check with false → SURVIVED 4. ContinueStatement : removed conditional - replaced equality check with false → SURVIVED 5. ContinueStatement : removed conditional - replaced equality check with true → SURVIVED 6. ContinueStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 5757 |
4
1. ContinueStatement : Substituted 1 with 0 → SURVIVED 2. ContinueStatement : Substituted 1 with 0 → SURVIVED 3. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ContinueStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5758 | } | |
| 5759 | } | |
| 5760 | } | |
| 5761 | ||
| 5762 | final public void ReturnStatement() throws ParseException { | |
| 5763 | /*@bgen(jjtree) ReturnStatement */ | |
| 5764 |
2
1. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ReturnStatement : Substituted 89 with 90 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTRETURNSTATEMENT); |
| 5765 |
1
1. ReturnStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5766 |
1
1. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5767 | try { | |
| 5768 |
2
1. ReturnStatement : Substituted 50 with 51 → SURVIVED 2. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RETURN); |
| 5769 |
94
1. ReturnStatement : Substituted -1 with 0 → SURVIVED 2. ReturnStatement : negated conditional → SURVIVED 3. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. ReturnStatement : removed conditional - replaced equality check with false → SURVIVED 5. ReturnStatement : removed conditional - replaced equality check with true → SURVIVED 6. ReturnStatement : RemoveSwitch 0 mutation → SURVIVED 7. ReturnStatement : RemoveSwitch 1 mutation → SURVIVED 8. ReturnStatement : RemoveSwitch 10 mutation → SURVIVED 9. ReturnStatement : RemoveSwitch 11 mutation → SURVIVED 10. ReturnStatement : RemoveSwitch 12 mutation → SURVIVED 11. ReturnStatement : RemoveSwitch 13 mutation → SURVIVED 12. ReturnStatement : RemoveSwitch 14 mutation → SURVIVED 13. ReturnStatement : RemoveSwitch 15 mutation → SURVIVED 14. ReturnStatement : RemoveSwitch 16 mutation → SURVIVED 15. ReturnStatement : RemoveSwitch 17 mutation → SURVIVED 16. ReturnStatement : RemoveSwitch 18 mutation → SURVIVED 17. ReturnStatement : RemoveSwitch 19 mutation → SURVIVED 18. ReturnStatement : RemoveSwitch 2 mutation → SURVIVED 19. ReturnStatement : RemoveSwitch 20 mutation → SURVIVED 20. ReturnStatement : RemoveSwitch 21 mutation → SURVIVED 21. ReturnStatement : RemoveSwitch 22 mutation → SURVIVED 22. ReturnStatement : RemoveSwitch 23 mutation → SURVIVED 23. ReturnStatement : RemoveSwitch 24 mutation → SURVIVED 24. ReturnStatement : RemoveSwitch 25 mutation → SURVIVED 25. ReturnStatement : RemoveSwitch 26 mutation → SURVIVED 26. ReturnStatement : RemoveSwitch 27 mutation → SURVIVED 27. ReturnStatement : RemoveSwitch 28 mutation → SURVIVED 28. ReturnStatement : RemoveSwitch 29 mutation → SURVIVED 29. ReturnStatement : RemoveSwitch 3 mutation → SURVIVED 30. ReturnStatement : RemoveSwitch 30 mutation → SURVIVED 31. ReturnStatement : RemoveSwitch 31 mutation → SURVIVED 32. ReturnStatement : RemoveSwitch 32 mutation → SURVIVED 33. ReturnStatement : RemoveSwitch 33 mutation → SURVIVED 34. ReturnStatement : RemoveSwitch 34 mutation → SURVIVED 35. ReturnStatement : RemoveSwitch 35 mutation → SURVIVED 36. ReturnStatement : RemoveSwitch 36 mutation → SURVIVED 37. ReturnStatement : RemoveSwitch 37 mutation → SURVIVED 38. ReturnStatement : RemoveSwitch 38 mutation → SURVIVED 39. ReturnStatement : RemoveSwitch 39 mutation → SURVIVED 40. ReturnStatement : RemoveSwitch 4 mutation → SURVIVED 41. ReturnStatement : RemoveSwitch 40 mutation → SURVIVED 42. ReturnStatement : RemoveSwitch 41 mutation → SURVIVED 43. ReturnStatement : RemoveSwitch 42 mutation → SURVIVED 44. ReturnStatement : RemoveSwitch 43 mutation → SURVIVED 45. ReturnStatement : RemoveSwitch 44 mutation → SURVIVED 46. ReturnStatement : RemoveSwitch 45 mutation → SURVIVED 47. ReturnStatement : RemoveSwitch 46 mutation → SURVIVED 48. ReturnStatement : RemoveSwitch 47 mutation → SURVIVED 49. ReturnStatement : RemoveSwitch 48 mutation → SURVIVED 50. ReturnStatement : RemoveSwitch 49 mutation → SURVIVED 51. ReturnStatement : RemoveSwitch 5 mutation → SURVIVED 52. ReturnStatement : RemoveSwitch 50 mutation → SURVIVED 53. ReturnStatement : RemoveSwitch 51 mutation → SURVIVED 54. ReturnStatement : RemoveSwitch 52 mutation → SURVIVED 55. ReturnStatement : RemoveSwitch 53 mutation → SURVIVED 56. ReturnStatement : RemoveSwitch 54 mutation → SURVIVED 57. ReturnStatement : RemoveSwitch 55 mutation → SURVIVED 58. ReturnStatement : RemoveSwitch 56 mutation → SURVIVED 59. ReturnStatement : RemoveSwitch 57 mutation → SURVIVED 60. ReturnStatement : RemoveSwitch 58 mutation → SURVIVED 61. ReturnStatement : RemoveSwitch 59 mutation → SURVIVED 62. ReturnStatement : RemoveSwitch 6 mutation → SURVIVED 63. ReturnStatement : RemoveSwitch 60 mutation → SURVIVED 64. ReturnStatement : RemoveSwitch 61 mutation → SURVIVED 65. ReturnStatement : RemoveSwitch 62 mutation → SURVIVED 66. ReturnStatement : RemoveSwitch 63 mutation → SURVIVED 67. ReturnStatement : RemoveSwitch 64 mutation → SURVIVED 68. ReturnStatement : RemoveSwitch 65 mutation → SURVIVED 69. ReturnStatement : RemoveSwitch 66 mutation → SURVIVED 70. ReturnStatement : RemoveSwitch 67 mutation → SURVIVED 71. ReturnStatement : RemoveSwitch 68 mutation → SURVIVED 72. ReturnStatement : RemoveSwitch 69 mutation → SURVIVED 73. ReturnStatement : RemoveSwitch 7 mutation → SURVIVED 74. ReturnStatement : RemoveSwitch 70 mutation → SURVIVED 75. ReturnStatement : RemoveSwitch 71 mutation → SURVIVED 76. ReturnStatement : RemoveSwitch 72 mutation → SURVIVED 77. ReturnStatement : RemoveSwitch 73 mutation → SURVIVED 78. ReturnStatement : RemoveSwitch 74 mutation → SURVIVED 79. ReturnStatement : RemoveSwitch 75 mutation → SURVIVED 80. ReturnStatement : RemoveSwitch 76 mutation → SURVIVED 81. ReturnStatement : RemoveSwitch 77 mutation → SURVIVED 82. ReturnStatement : RemoveSwitch 78 mutation → SURVIVED 83. ReturnStatement : RemoveSwitch 79 mutation → SURVIVED 84. ReturnStatement : RemoveSwitch 8 mutation → SURVIVED 85. ReturnStatement : RemoveSwitch 80 mutation → SURVIVED 86. ReturnStatement : RemoveSwitch 81 mutation → SURVIVED 87. ReturnStatement : RemoveSwitch 82 mutation → SURVIVED 88. ReturnStatement : RemoveSwitch 83 mutation → SURVIVED 89. ReturnStatement : RemoveSwitch 84 mutation → SURVIVED 90. ReturnStatement : RemoveSwitch 85 mutation → SURVIVED 91. ReturnStatement : RemoveSwitch 86 mutation → SURVIVED 92. ReturnStatement : RemoveSwitch 87 mutation → SURVIVED 93. ReturnStatement : RemoveSwitch 9 mutation → SURVIVED 94. ReturnStatement : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5770 | case BOOLEAN: | |
| 5771 | case BYTE: | |
| 5772 | case CHAR: | |
| 5773 | case DOUBLE: | |
| 5774 | case FALSE: | |
| 5775 | case FLOAT: | |
| 5776 | case INT: | |
| 5777 | case LONG: | |
| 5778 | case NEW: | |
| 5779 | case NULL: | |
| 5780 | case SHORT: | |
| 5781 | case SUPER: | |
| 5782 | case THIS: | |
| 5783 | case TRUE: | |
| 5784 | case VOID: | |
| 5785 | case INTEGER_LITERAL: | |
| 5786 | case FLOATING_POINT_LITERAL: | |
| 5787 | case CHARACTER_LITERAL: | |
| 5788 | case STRING_LITERAL: | |
| 5789 | case IDENTIFIER: | |
| 5790 | case LPAREN: | |
| 5791 | case BANG: | |
| 5792 | case TILDE: | |
| 5793 | case INCR: | |
| 5794 | case DECR: | |
| 5795 | case PLUS: | |
| 5796 | case MINUS: | |
| 5797 |
1
1. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → NO_COVERAGE |
Expression(); |
| 5798 | break; | |
| 5799 | default: | |
| 5800 | ; | |
| 5801 | } | |
| 5802 |
2
1. ReturnStatement : Substituted 83 with 84 → NO_COVERAGE 2. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 5803 | } catch (Throwable jjte000) { | |
| 5804 |
3
1. ReturnStatement : removed conditional - replaced equality check with true → SURVIVED 2. ReturnStatement : negated conditional → KILLED 3. ReturnStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5805 |
1
1. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5806 |
1
1. ReturnStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5807 | } else { | |
| 5808 |
1
1. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5809 | } | |
| 5810 |
3
1. ReturnStatement : removed conditional - replaced equality check with true → SURVIVED 2. ReturnStatement : negated conditional → KILLED 3. ReturnStatement : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 5811 | { | |
| 5812 | if (true) { | |
| 5813 | throw (RuntimeException) jjte000; | |
| 5814 | } | |
| 5815 | } | |
| 5816 | } | |
| 5817 |
3
1. ReturnStatement : negated conditional → SURVIVED 2. ReturnStatement : removed conditional - replaced equality check with false → SURVIVED 3. ReturnStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5818 | { | |
| 5819 | if (true) { | |
| 5820 | throw (ParseException) jjte000; | |
| 5821 | } | |
| 5822 | } | |
| 5823 | } | |
| 5824 | { | |
| 5825 | if (true) { | |
| 5826 | throw (Error) jjte000; | |
| 5827 | } | |
| 5828 | } | |
| 5829 | } finally { | |
| 5830 |
6
1. ReturnStatement : negated conditional → SURVIVED 2. ReturnStatement : removed conditional - replaced equality check with false → SURVIVED 3. ReturnStatement : removed conditional - replaced equality check with false → SURVIVED 4. ReturnStatement : removed conditional - replaced equality check with true → SURVIVED 5. ReturnStatement : negated conditional → KILLED 6. ReturnStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5831 |
4
1. ReturnStatement : Substituted 1 with 0 → SURVIVED 2. ReturnStatement : Substituted 1 with 0 → SURVIVED 3. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ReturnStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5832 | } | |
| 5833 | } | |
| 5834 | } | |
| 5835 | ||
| 5836 | final public void ThrowStatement() throws ParseException { | |
| 5837 | /*@bgen(jjtree) ThrowStatement */ | |
| 5838 |
2
1. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. ThrowStatement : Substituted 90 with 91 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTHROWSTATEMENT); |
| 5839 |
1
1. ThrowStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5840 |
1
1. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5841 | try { | |
| 5842 |
2
1. ThrowStatement : Substituted 58 with 59 → SURVIVED 2. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(THROW); |
| 5843 |
1
1. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 5844 |
2
1. ThrowStatement : Substituted 83 with 84 → SURVIVED 2. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(SEMICOLON); |
| 5845 | } catch (Throwable jjte000) { | |
| 5846 |
3
1. ThrowStatement : removed conditional - replaced equality check with true → SURVIVED 2. ThrowStatement : negated conditional → KILLED 3. ThrowStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5847 |
1
1. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5848 |
1
1. ThrowStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5849 | } else { | |
| 5850 |
1
1. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5851 | } | |
| 5852 |
3
1. ThrowStatement : negated conditional → SURVIVED 2. ThrowStatement : removed conditional - replaced equality check with false → SURVIVED 3. ThrowStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5853 | { | |
| 5854 | if (true) { | |
| 5855 | throw (RuntimeException) jjte000; | |
| 5856 | } | |
| 5857 | } | |
| 5858 | } | |
| 5859 |
3
1. ThrowStatement : negated conditional → SURVIVED 2. ThrowStatement : removed conditional - replaced equality check with false → SURVIVED 3. ThrowStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5860 | { | |
| 5861 | if (true) { | |
| 5862 | throw (ParseException) jjte000; | |
| 5863 | } | |
| 5864 | } | |
| 5865 | } | |
| 5866 | { | |
| 5867 | if (true) { | |
| 5868 | throw (Error) jjte000; | |
| 5869 | } | |
| 5870 | } | |
| 5871 | } finally { | |
| 5872 |
6
1. ThrowStatement : negated conditional → SURVIVED 2. ThrowStatement : removed conditional - replaced equality check with false → SURVIVED 3. ThrowStatement : removed conditional - replaced equality check with false → SURVIVED 4. ThrowStatement : removed conditional - replaced equality check with true → SURVIVED 5. ThrowStatement : negated conditional → KILLED 6. ThrowStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5873 |
4
1. ThrowStatement : Substituted 1 with 0 → SURVIVED 2. ThrowStatement : Substituted 1 with 0 → SURVIVED 3. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. ThrowStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5874 | } | |
| 5875 | } | |
| 5876 | } | |
| 5877 | ||
| 5878 | final public void SynchronizedStatement() throws ParseException { | |
| 5879 | /*@bgen(jjtree) SynchronizedStatement */ | |
| 5880 |
2
1. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. SynchronizedStatement : Substituted 91 with 92 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSYNCHRONIZEDSTATEMENT); |
| 5881 |
1
1. SynchronizedStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5882 |
1
1. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5883 | try { | |
| 5884 |
2
1. SynchronizedStatement : Substituted 56 with 57 → SURVIVED 2. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(SYNCHRONIZED); |
| 5885 |
2
1. SynchronizedStatement : Substituted 77 with 78 → SURVIVED 2. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 5886 |
1
1. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Expression → SURVIVED |
Expression(); |
| 5887 |
2
1. SynchronizedStatement : Substituted 78 with 79 → SURVIVED 2. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 5888 |
1
1. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Block → SURVIVED |
Block(); |
| 5889 | } catch (Throwable jjte000) { | |
| 5890 |
3
1. SynchronizedStatement : removed conditional - replaced equality check with true → SURVIVED 2. SynchronizedStatement : negated conditional → KILLED 3. SynchronizedStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5891 |
1
1. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5892 |
1
1. SynchronizedStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5893 | } else { | |
| 5894 |
1
1. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5895 | } | |
| 5896 |
3
1. SynchronizedStatement : negated conditional → SURVIVED 2. SynchronizedStatement : removed conditional - replaced equality check with false → SURVIVED 3. SynchronizedStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 5897 | { | |
| 5898 | if (true) { | |
| 5899 | throw (RuntimeException) jjte000; | |
| 5900 | } | |
| 5901 | } | |
| 5902 | } | |
| 5903 |
3
1. SynchronizedStatement : negated conditional → SURVIVED 2. SynchronizedStatement : removed conditional - replaced equality check with false → SURVIVED 3. SynchronizedStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5904 | { | |
| 5905 | if (true) { | |
| 5906 | throw (ParseException) jjte000; | |
| 5907 | } | |
| 5908 | } | |
| 5909 | } | |
| 5910 | { | |
| 5911 | if (true) { | |
| 5912 | throw (Error) jjte000; | |
| 5913 | } | |
| 5914 | } | |
| 5915 | } finally { | |
| 5916 |
6
1. SynchronizedStatement : negated conditional → SURVIVED 2. SynchronizedStatement : removed conditional - replaced equality check with false → SURVIVED 3. SynchronizedStatement : removed conditional - replaced equality check with false → SURVIVED 4. SynchronizedStatement : removed conditional - replaced equality check with true → SURVIVED 5. SynchronizedStatement : negated conditional → KILLED 6. SynchronizedStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5917 |
4
1. SynchronizedStatement : Substituted 1 with 0 → SURVIVED 2. SynchronizedStatement : Substituted 1 with 0 → SURVIVED 3. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. SynchronizedStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5918 | } | |
| 5919 | } | |
| 5920 | } | |
| 5921 | ||
| 5922 | final public void TryStatement() throws ParseException { | |
| 5923 | /*@bgen(jjtree) TryStatement */ | |
| 5924 |
2
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. TryStatement : Substituted 92 with 93 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTTRYSTATEMENT); |
| 5925 |
1
1. TryStatement : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 5926 |
1
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 5927 | try { | |
| 5928 |
2
1. TryStatement : Substituted 62 with 63 → SURVIVED 2. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(TRY); |
| 5929 |
1
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Block → SURVIVED |
Block(); |
| 5930 | label_43:while (true) { | |
| 5931 |
7
1. TryStatement : Substituted -1 with 0 → NO_COVERAGE 2. TryStatement : negated conditional → NO_COVERAGE 3. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. TryStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. TryStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. TryStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. TryStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5932 | case CATCH: | |
| 5933 | ; | |
| 5934 | break; | |
| 5935 | default: | |
| 5936 | break label_43; | |
| 5937 | } | |
| 5938 |
2
1. TryStatement : Substituted 19 with 20 → NO_COVERAGE 2. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(CATCH); |
| 5939 |
2
1. TryStatement : Substituted 77 with 78 → NO_COVERAGE 2. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LPAREN); |
| 5940 |
1
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::FormalParameter → NO_COVERAGE |
FormalParameter(); |
| 5941 |
2
1. TryStatement : Substituted 78 with 79 → NO_COVERAGE 2. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 5942 |
1
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Block → NO_COVERAGE |
Block(); |
| 5943 | } | |
| 5944 |
7
1. TryStatement : Substituted -1 with 0 → NO_COVERAGE 2. TryStatement : negated conditional → NO_COVERAGE 3. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. TryStatement : removed conditional - replaced equality check with false → NO_COVERAGE 5. TryStatement : removed conditional - replaced equality check with true → NO_COVERAGE 6. TryStatement : RemoveSwitch 0 mutation → NO_COVERAGE 7. TryStatement : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 5945 | case FINALLY: | |
| 5946 |
2
1. TryStatement : Substituted 32 with 33 → NO_COVERAGE 2. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(FINALLY); |
| 5947 |
1
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Block → NO_COVERAGE |
Block(); |
| 5948 | break; | |
| 5949 | default: | |
| 5950 | ; | |
| 5951 | } | |
| 5952 | } catch (Throwable jjte000) { | |
| 5953 |
3
1. TryStatement : removed conditional - replaced equality check with true → SURVIVED 2. TryStatement : negated conditional → KILLED 3. TryStatement : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 5954 |
1
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 5955 |
1
1. TryStatement : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 5956 | } else { | |
| 5957 |
1
1. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 5958 | } | |
| 5959 |
3
1. TryStatement : removed conditional - replaced equality check with true → SURVIVED 2. TryStatement : negated conditional → KILLED 3. TryStatement : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 5960 | { | |
| 5961 | if (true) { | |
| 5962 | throw (RuntimeException) jjte000; | |
| 5963 | } | |
| 5964 | } | |
| 5965 | } | |
| 5966 |
3
1. TryStatement : negated conditional → SURVIVED 2. TryStatement : removed conditional - replaced equality check with false → SURVIVED 3. TryStatement : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 5967 | { | |
| 5968 | if (true) { | |
| 5969 | throw (ParseException) jjte000; | |
| 5970 | } | |
| 5971 | } | |
| 5972 | } | |
| 5973 | { | |
| 5974 | if (true) { | |
| 5975 | throw (Error) jjte000; | |
| 5976 | } | |
| 5977 | } | |
| 5978 | } finally { | |
| 5979 |
6
1. TryStatement : negated conditional → SURVIVED 2. TryStatement : removed conditional - replaced equality check with false → SURVIVED 3. TryStatement : removed conditional - replaced equality check with false → SURVIVED 4. TryStatement : removed conditional - replaced equality check with true → SURVIVED 5. TryStatement : negated conditional → KILLED 6. TryStatement : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 5980 |
4
1. TryStatement : Substituted 1 with 0 → SURVIVED 2. TryStatement : Substituted 1 with 0 → SURVIVED 3. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. TryStatement : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 5981 | } | |
| 5982 | } | |
| 5983 | } | |
| 5984 | ||
| 5985 | /* We use productions to match >>>, >> and > so that we can keep the | |
| 5986 | * type declaration syntax with generics clean | |
| 5987 | */ | |
| 5988 | final public void RUNSIGNEDSHIFT() throws ParseException { | |
| 5989 | /*@bgen(jjtree) RUNSIGNEDSHIFT */ | |
| 5990 |
2
1. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. RUNSIGNEDSHIFT : Substituted 93 with 94 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTRUNSIGNEDSHIFT); |
| 5991 |
1
1. RUNSIGNEDSHIFT : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 5992 |
1
1. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 5993 | try { | |
| 5994 |
12
1. RUNSIGNEDSHIFT : Substituted 1 with 0 → NO_COVERAGE 2. RUNSIGNEDSHIFT : Substituted 124 with 125 → NO_COVERAGE 3. RUNSIGNEDSHIFT : Substituted 1 with 0 → NO_COVERAGE 4. RUNSIGNEDSHIFT : Substituted 122 with 123 → NO_COVERAGE 5. RUNSIGNEDSHIFT : negated conditional → NO_COVERAGE 6. RUNSIGNEDSHIFT : negated conditional → NO_COVERAGE 7. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → NO_COVERAGE 8. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → NO_COVERAGE 9. RUNSIGNEDSHIFT : removed conditional - replaced equality check with false → NO_COVERAGE 10. RUNSIGNEDSHIFT : removed conditional - replaced equality check with false → NO_COVERAGE 11. RUNSIGNEDSHIFT : removed conditional - replaced equality check with true → NO_COVERAGE 12. RUNSIGNEDSHIFT : removed conditional - replaced equality check with true → NO_COVERAGE |
if (getToken(1).kind == GT && |
| 5995 | ((Token.GTToken) getToken(1)).realKind == RUNSIGNEDSHIFT) { | |
| 5996 | ||
| 5997 | } else { | |
| 5998 |
2
1. RUNSIGNEDSHIFT : Substituted -1 with 0 → NO_COVERAGE 2. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 5999 |
1
1. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 6000 | } | |
| 6001 |
2
1. RUNSIGNEDSHIFT : Substituted 124 with 125 → NO_COVERAGE 2. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 6002 |
2
1. RUNSIGNEDSHIFT : Substituted 124 with 125 → NO_COVERAGE 2. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 6003 |
2
1. RUNSIGNEDSHIFT : Substituted 124 with 125 → NO_COVERAGE 2. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 6004 | } finally { | |
| 6005 |
6
1. RUNSIGNEDSHIFT : negated conditional → NO_COVERAGE 2. RUNSIGNEDSHIFT : negated conditional → NO_COVERAGE 3. RUNSIGNEDSHIFT : removed conditional - replaced equality check with false → NO_COVERAGE 4. RUNSIGNEDSHIFT : removed conditional - replaced equality check with false → NO_COVERAGE 5. RUNSIGNEDSHIFT : removed conditional - replaced equality check with true → NO_COVERAGE 6. RUNSIGNEDSHIFT : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 6006 |
4
1. RUNSIGNEDSHIFT : Substituted 1 with 0 → NO_COVERAGE 2. RUNSIGNEDSHIFT : Substituted 1 with 0 → NO_COVERAGE 3. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. RUNSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 6007 | } | |
| 6008 | } | |
| 6009 | } | |
| 6010 | ||
| 6011 | final public void RSIGNEDSHIFT() throws ParseException { | |
| 6012 | /*@bgen(jjtree) RSIGNEDSHIFT */ | |
| 6013 |
2
1. RSIGNEDSHIFT : Substituted 94 with 95 → SURVIVED 2. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTRSIGNEDSHIFT); |
| 6014 |
1
1. RSIGNEDSHIFT : Substituted 1 with 0 → SURVIVED |
boolean jjtc000 = true; |
| 6015 |
1
1. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6016 | try { | |
| 6017 |
12
1. RSIGNEDSHIFT : Substituted 1 with 0 → SURVIVED 2. RSIGNEDSHIFT : Substituted 124 with 125 → SURVIVED 3. RSIGNEDSHIFT : Substituted 1 with 0 → SURVIVED 4. RSIGNEDSHIFT : Substituted 123 with 124 → SURVIVED 5. RSIGNEDSHIFT : negated conditional → SURVIVED 6. RSIGNEDSHIFT : negated conditional → SURVIVED 7. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → SURVIVED 8. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → SURVIVED 9. RSIGNEDSHIFT : removed conditional - replaced equality check with false → SURVIVED 10. RSIGNEDSHIFT : removed conditional - replaced equality check with false → SURVIVED 11. RSIGNEDSHIFT : removed conditional - replaced equality check with true → SURVIVED 12. RSIGNEDSHIFT : removed conditional - replaced equality check with true → SURVIVED |
if (getToken(1).kind == GT && |
| 6018 | ((Token.GTToken) getToken(1)).realKind == RSIGNEDSHIFT) { | |
| 6019 | ||
| 6020 | } else { | |
| 6021 |
2
1. RSIGNEDSHIFT : Substituted -1 with 0 → SURVIVED 2. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 6022 |
1
1. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 6023 | } | |
| 6024 |
2
1. RSIGNEDSHIFT : Substituted 124 with 125 → NO_COVERAGE 2. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 6025 |
2
1. RSIGNEDSHIFT : Substituted 124 with 125 → NO_COVERAGE 2. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(GT); |
| 6026 | } finally { | |
| 6027 |
6
1. RSIGNEDSHIFT : negated conditional → SURVIVED 2. RSIGNEDSHIFT : negated conditional → SURVIVED 3. RSIGNEDSHIFT : removed conditional - replaced equality check with false → SURVIVED 4. RSIGNEDSHIFT : removed conditional - replaced equality check with false → SURVIVED 5. RSIGNEDSHIFT : removed conditional - replaced equality check with true → SURVIVED 6. RSIGNEDSHIFT : removed conditional - replaced equality check with true → SURVIVED |
if (jjtc000) { |
| 6028 |
4
1. RSIGNEDSHIFT : Substituted 1 with 0 → SURVIVED 2. RSIGNEDSHIFT : Substituted 1 with 0 → SURVIVED 3. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. RSIGNEDSHIFT : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6029 | } | |
| 6030 | } | |
| 6031 | } | |
| 6032 | ||
| 6033 | /* Annotation syntax follows. */ | |
| 6034 | final public void Annotation() throws ParseException { | |
| 6035 | /*@bgen(jjtree) Annotation */ | |
| 6036 |
2
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. Annotation : Substituted 95 with 96 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTANNOTATION); |
| 6037 |
1
1. Annotation : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 6038 |
1
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 6039 | try { | |
| 6040 |
5
1. Annotation : Substituted 2147483647 with -2147483648 → NO_COVERAGE 2. Annotation : negated conditional → NO_COVERAGE 3. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_37 → NO_COVERAGE 4. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 5. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_37(2147483647)) { |
| 6041 |
1
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::NormalAnnotation → NO_COVERAGE |
NormalAnnotation(); |
| 6042 |
5
1. Annotation : Substituted 2147483647 with -2147483648 → NO_COVERAGE 2. Annotation : negated conditional → NO_COVERAGE 3. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_38 → NO_COVERAGE 4. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 5. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE |
} else if (jj_2_38(2147483647)) { |
| 6043 |
1
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::SingleMemberAnnotation → NO_COVERAGE |
SingleMemberAnnotation(); |
| 6044 | } else { | |
| 6045 |
7
1. Annotation : Substituted -1 with 0 → NO_COVERAGE 2. Annotation : negated conditional → NO_COVERAGE 3. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 5. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE 6. Annotation : RemoveSwitch 0 mutation → NO_COVERAGE 7. Annotation : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6046 | case AT: | |
| 6047 |
1
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MarkerAnnotation → NO_COVERAGE |
MarkerAnnotation(); |
| 6048 | break; | |
| 6049 | default: | |
| 6050 |
2
1. Annotation : Substituted -1 with 0 → NO_COVERAGE 2. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 6051 |
1
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 6052 | } | |
| 6053 | } | |
| 6054 | } catch (Throwable jjte000) { | |
| 6055 |
3
1. Annotation : negated conditional → NO_COVERAGE 2. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 3. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 6056 |
1
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 6057 |
1
1. Annotation : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 6058 | } else { | |
| 6059 |
1
1. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6060 | } | |
| 6061 |
3
1. Annotation : negated conditional → NO_COVERAGE 2. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 3. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 6062 | { | |
| 6063 | if (true) { | |
| 6064 | throw (RuntimeException) jjte000; | |
| 6065 | } | |
| 6066 | } | |
| 6067 | } | |
| 6068 |
3
1. Annotation : negated conditional → NO_COVERAGE 2. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 3. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 6069 | { | |
| 6070 | if (true) { | |
| 6071 | throw (ParseException) jjte000; | |
| 6072 | } | |
| 6073 | } | |
| 6074 | } | |
| 6075 | { | |
| 6076 | if (true) { | |
| 6077 | throw (Error) jjte000; | |
| 6078 | } | |
| 6079 | } | |
| 6080 | } finally { | |
| 6081 |
6
1. Annotation : negated conditional → NO_COVERAGE 2. Annotation : negated conditional → NO_COVERAGE 3. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 4. Annotation : removed conditional - replaced equality check with false → NO_COVERAGE 5. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE 6. Annotation : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 6082 |
4
1. Annotation : Substituted 1 with 0 → NO_COVERAGE 2. Annotation : Substituted 1 with 0 → NO_COVERAGE 3. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. Annotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 6083 | } | |
| 6084 | } | |
| 6085 | } | |
| 6086 | ||
| 6087 | final public void NormalAnnotation() throws ParseException { | |
| 6088 | /*@bgen(jjtree) NormalAnnotation */ | |
| 6089 |
2
1. NormalAnnotation : Substituted 96 with 97 → SURVIVED 2. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTNORMALANNOTATION); |
| 6090 |
1
1. NormalAnnotation : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6091 |
1
1. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6092 | try { | |
| 6093 |
2
1. NormalAnnotation : Substituted 86 with 87 → SURVIVED 2. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(AT); |
| 6094 |
1
1. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → SURVIVED |
Name(); |
| 6095 |
2
1. NormalAnnotation : Substituted 77 with 78 → SURVIVED 2. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 6096 |
7
1. NormalAnnotation : Substituted -1 with 0 → SURVIVED 2. NormalAnnotation : negated conditional → SURVIVED 3. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. NormalAnnotation : removed conditional - replaced equality check with false → SURVIVED 5. NormalAnnotation : removed conditional - replaced equality check with true → SURVIVED 6. NormalAnnotation : RemoveSwitch 0 mutation → SURVIVED 7. NormalAnnotation : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6097 | case IDENTIFIER: | |
| 6098 |
1
1. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValuePairs → NO_COVERAGE |
MemberValuePairs(); |
| 6099 | break; | |
| 6100 | default: | |
| 6101 | ; | |
| 6102 | } | |
| 6103 |
2
1. NormalAnnotation : Substituted 78 with 79 → NO_COVERAGE 2. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 6104 | } catch (Throwable jjte000) { | |
| 6105 |
3
1. NormalAnnotation : removed conditional - replaced equality check with true → SURVIVED 2. NormalAnnotation : negated conditional → KILLED 3. NormalAnnotation : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6106 |
1
1. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6107 |
1
1. NormalAnnotation : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6108 | } else { | |
| 6109 |
1
1. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6110 | } | |
| 6111 |
3
1. NormalAnnotation : removed conditional - replaced equality check with true → SURVIVED 2. NormalAnnotation : negated conditional → KILLED 3. NormalAnnotation : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 6112 | { | |
| 6113 | if (true) { | |
| 6114 | throw (RuntimeException) jjte000; | |
| 6115 | } | |
| 6116 | } | |
| 6117 | } | |
| 6118 |
3
1. NormalAnnotation : negated conditional → SURVIVED 2. NormalAnnotation : removed conditional - replaced equality check with false → SURVIVED 3. NormalAnnotation : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6119 | { | |
| 6120 | if (true) { | |
| 6121 | throw (ParseException) jjte000; | |
| 6122 | } | |
| 6123 | } | |
| 6124 | } | |
| 6125 | { | |
| 6126 | if (true) { | |
| 6127 | throw (Error) jjte000; | |
| 6128 | } | |
| 6129 | } | |
| 6130 | } finally { | |
| 6131 |
6
1. NormalAnnotation : negated conditional → SURVIVED 2. NormalAnnotation : removed conditional - replaced equality check with false → SURVIVED 3. NormalAnnotation : removed conditional - replaced equality check with false → SURVIVED 4. NormalAnnotation : removed conditional - replaced equality check with true → SURVIVED 5. NormalAnnotation : negated conditional → KILLED 6. NormalAnnotation : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6132 |
4
1. NormalAnnotation : Substituted 1 with 0 → SURVIVED 2. NormalAnnotation : Substituted 1 with 0 → SURVIVED 3. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. NormalAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6133 | } | |
| 6134 | } | |
| 6135 | } | |
| 6136 | ||
| 6137 | final public void MarkerAnnotation() throws ParseException { | |
| 6138 | /*@bgen(jjtree) MarkerAnnotation */ | |
| 6139 |
2
1. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. MarkerAnnotation : Substituted 97 with 98 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMARKERANNOTATION); |
| 6140 |
1
1. MarkerAnnotation : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6141 |
1
1. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6142 | try { | |
| 6143 |
2
1. MarkerAnnotation : Substituted 86 with 87 → SURVIVED 2. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(AT); |
| 6144 |
1
1. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → SURVIVED |
Name(); |
| 6145 | } catch (Throwable jjte000) { | |
| 6146 |
3
1. MarkerAnnotation : removed conditional - replaced equality check with true → SURVIVED 2. MarkerAnnotation : negated conditional → KILLED 3. MarkerAnnotation : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6147 |
1
1. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6148 |
1
1. MarkerAnnotation : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6149 | } else { | |
| 6150 |
1
1. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6151 | } | |
| 6152 |
3
1. MarkerAnnotation : negated conditional → SURVIVED 2. MarkerAnnotation : removed conditional - replaced equality check with false → SURVIVED 3. MarkerAnnotation : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 6153 | { | |
| 6154 | if (true) { | |
| 6155 | throw (RuntimeException) jjte000; | |
| 6156 | } | |
| 6157 | } | |
| 6158 | } | |
| 6159 |
3
1. MarkerAnnotation : negated conditional → SURVIVED 2. MarkerAnnotation : removed conditional - replaced equality check with false → SURVIVED 3. MarkerAnnotation : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6160 | { | |
| 6161 | if (true) { | |
| 6162 | throw (ParseException) jjte000; | |
| 6163 | } | |
| 6164 | } | |
| 6165 | } | |
| 6166 | { | |
| 6167 | if (true) { | |
| 6168 | throw (Error) jjte000; | |
| 6169 | } | |
| 6170 | } | |
| 6171 | } finally { | |
| 6172 |
6
1. MarkerAnnotation : negated conditional → SURVIVED 2. MarkerAnnotation : removed conditional - replaced equality check with false → SURVIVED 3. MarkerAnnotation : removed conditional - replaced equality check with false → SURVIVED 4. MarkerAnnotation : removed conditional - replaced equality check with true → SURVIVED 5. MarkerAnnotation : negated conditional → KILLED 6. MarkerAnnotation : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6173 |
4
1. MarkerAnnotation : Substituted 1 with 0 → SURVIVED 2. MarkerAnnotation : Substituted 1 with 0 → SURVIVED 3. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MarkerAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6174 | } | |
| 6175 | } | |
| 6176 | } | |
| 6177 | ||
| 6178 | final public void SingleMemberAnnotation() throws ParseException { | |
| 6179 | /*@bgen(jjtree) SingleMemberAnnotation */ | |
| 6180 |
2
1. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. SingleMemberAnnotation : Substituted 98 with 99 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTSINGLEMEMBERANNOTATION); |
| 6181 |
1
1. SingleMemberAnnotation : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6182 |
1
1. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6183 | try { | |
| 6184 |
2
1. SingleMemberAnnotation : Substituted 86 with 87 → SURVIVED 2. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(AT); |
| 6185 |
1
1. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Name → SURVIVED |
Name(); |
| 6186 |
2
1. SingleMemberAnnotation : Substituted 77 with 78 → SURVIVED 2. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LPAREN); |
| 6187 |
1
1. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValue → SURVIVED |
MemberValue(); |
| 6188 |
2
1. SingleMemberAnnotation : Substituted 78 with 79 → SURVIVED 2. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(RPAREN); |
| 6189 | } catch (Throwable jjte000) { | |
| 6190 |
3
1. SingleMemberAnnotation : removed conditional - replaced equality check with true → SURVIVED 2. SingleMemberAnnotation : negated conditional → KILLED 3. SingleMemberAnnotation : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6191 |
1
1. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6192 |
1
1. SingleMemberAnnotation : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6193 | } else { | |
| 6194 |
1
1. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6195 | } | |
| 6196 |
3
1. SingleMemberAnnotation : removed conditional - replaced equality check with true → SURVIVED 2. SingleMemberAnnotation : negated conditional → KILLED 3. SingleMemberAnnotation : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 6197 | { | |
| 6198 | if (true) { | |
| 6199 | throw (RuntimeException) jjte000; | |
| 6200 | } | |
| 6201 | } | |
| 6202 | } | |
| 6203 |
3
1. SingleMemberAnnotation : negated conditional → SURVIVED 2. SingleMemberAnnotation : removed conditional - replaced equality check with false → SURVIVED 3. SingleMemberAnnotation : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6204 | { | |
| 6205 | if (true) { | |
| 6206 | throw (ParseException) jjte000; | |
| 6207 | } | |
| 6208 | } | |
| 6209 | } | |
| 6210 | { | |
| 6211 | if (true) { | |
| 6212 | throw (Error) jjte000; | |
| 6213 | } | |
| 6214 | } | |
| 6215 | } finally { | |
| 6216 |
6
1. SingleMemberAnnotation : negated conditional → SURVIVED 2. SingleMemberAnnotation : removed conditional - replaced equality check with false → SURVIVED 3. SingleMemberAnnotation : removed conditional - replaced equality check with false → SURVIVED 4. SingleMemberAnnotation : removed conditional - replaced equality check with true → SURVIVED 5. SingleMemberAnnotation : negated conditional → KILLED 6. SingleMemberAnnotation : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6217 |
4
1. SingleMemberAnnotation : Substituted 1 with 0 → SURVIVED 2. SingleMemberAnnotation : Substituted 1 with 0 → SURVIVED 3. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. SingleMemberAnnotation : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6218 | } | |
| 6219 | } | |
| 6220 | } | |
| 6221 | ||
| 6222 | final public void MemberValuePairs() throws ParseException { | |
| 6223 | /*@bgen(jjtree) MemberValuePairs */ | |
| 6224 |
2
1. MemberValuePairs : Substituted 99 with 100 → SURVIVED 2. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMEMBERVALUEPAIRS); |
| 6225 |
1
1. MemberValuePairs : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6226 |
1
1. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6227 | try { | |
| 6228 |
1
1. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValuePair → KILLED |
MemberValuePair(); |
| 6229 | label_44:while (true) { | |
| 6230 |
7
1. MemberValuePairs : Substituted -1 with 0 → NO_COVERAGE 2. MemberValuePairs : negated conditional → NO_COVERAGE 3. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. MemberValuePairs : removed conditional - replaced equality check with false → NO_COVERAGE 5. MemberValuePairs : removed conditional - replaced equality check with true → NO_COVERAGE 6. MemberValuePairs : RemoveSwitch 0 mutation → NO_COVERAGE 7. MemberValuePairs : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6231 | case COMMA: | |
| 6232 | ; | |
| 6233 | break; | |
| 6234 | default: | |
| 6235 | break label_44; | |
| 6236 | } | |
| 6237 |
2
1. MemberValuePairs : Substituted 84 with 85 → NO_COVERAGE 2. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 6238 |
1
1. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValuePair → NO_COVERAGE |
MemberValuePair(); |
| 6239 | } | |
| 6240 | } catch (Throwable jjte000) { | |
| 6241 |
3
1. MemberValuePairs : removed conditional - replaced equality check with true → SURVIVED 2. MemberValuePairs : negated conditional → KILLED 3. MemberValuePairs : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6242 |
1
1. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6243 |
1
1. MemberValuePairs : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6244 | } else { | |
| 6245 |
1
1. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6246 | } | |
| 6247 |
3
1. MemberValuePairs : negated conditional → SURVIVED 2. MemberValuePairs : removed conditional - replaced equality check with false → SURVIVED 3. MemberValuePairs : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 6248 | { | |
| 6249 | if (true) { | |
| 6250 | throw (RuntimeException) jjte000; | |
| 6251 | } | |
| 6252 | } | |
| 6253 | } | |
| 6254 |
3
1. MemberValuePairs : negated conditional → SURVIVED 2. MemberValuePairs : removed conditional - replaced equality check with false → SURVIVED 3. MemberValuePairs : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6255 | { | |
| 6256 | if (true) { | |
| 6257 | throw (ParseException) jjte000; | |
| 6258 | } | |
| 6259 | } | |
| 6260 | } | |
| 6261 | { | |
| 6262 | if (true) { | |
| 6263 | throw (Error) jjte000; | |
| 6264 | } | |
| 6265 | } | |
| 6266 | } finally { | |
| 6267 |
6
1. MemberValuePairs : negated conditional → SURVIVED 2. MemberValuePairs : removed conditional - replaced equality check with false → SURVIVED 3. MemberValuePairs : removed conditional - replaced equality check with false → SURVIVED 4. MemberValuePairs : removed conditional - replaced equality check with true → SURVIVED 5. MemberValuePairs : negated conditional → KILLED 6. MemberValuePairs : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6268 |
4
1. MemberValuePairs : Substituted 1 with 0 → SURVIVED 2. MemberValuePairs : Substituted 1 with 0 → SURVIVED 3. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MemberValuePairs : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6269 | } | |
| 6270 | } | |
| 6271 | } | |
| 6272 | ||
| 6273 | final public void MemberValuePair() throws ParseException { | |
| 6274 | /*@bgen(jjtree) MemberValuePair */ | |
| 6275 |
2
1. MemberValuePair : Substituted 100 with 101 → SURVIVED 2. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMEMBERVALUEPAIR); |
| 6276 |
1
1. MemberValuePair : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6277 |
1
1. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6278 | try { | |
| 6279 |
2
1. MemberValuePair : Substituted 74 with 75 → SURVIVED 2. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IDENTIFIER); |
| 6280 |
2
1. MemberValuePair : Substituted 87 with 88 → SURVIVED 2. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(ASSIGN); |
| 6281 |
1
1. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValue → SURVIVED |
MemberValue(); |
| 6282 | } catch (Throwable jjte000) { | |
| 6283 |
3
1. MemberValuePair : removed conditional - replaced equality check with true → SURVIVED 2. MemberValuePair : negated conditional → KILLED 3. MemberValuePair : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6284 |
1
1. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6285 |
1
1. MemberValuePair : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6286 | } else { | |
| 6287 |
1
1. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6288 | } | |
| 6289 |
3
1. MemberValuePair : negated conditional → SURVIVED 2. MemberValuePair : removed conditional - replaced equality check with false → SURVIVED 3. MemberValuePair : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 6290 | { | |
| 6291 | if (true) { | |
| 6292 | throw (RuntimeException) jjte000; | |
| 6293 | } | |
| 6294 | } | |
| 6295 | } | |
| 6296 |
3
1. MemberValuePair : negated conditional → SURVIVED 2. MemberValuePair : removed conditional - replaced equality check with false → SURVIVED 3. MemberValuePair : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6297 | { | |
| 6298 | if (true) { | |
| 6299 | throw (ParseException) jjte000; | |
| 6300 | } | |
| 6301 | } | |
| 6302 | } | |
| 6303 | { | |
| 6304 | if (true) { | |
| 6305 | throw (Error) jjte000; | |
| 6306 | } | |
| 6307 | } | |
| 6308 | } finally { | |
| 6309 |
6
1. MemberValuePair : negated conditional → SURVIVED 2. MemberValuePair : removed conditional - replaced equality check with false → SURVIVED 3. MemberValuePair : removed conditional - replaced equality check with false → SURVIVED 4. MemberValuePair : removed conditional - replaced equality check with true → SURVIVED 5. MemberValuePair : negated conditional → KILLED 6. MemberValuePair : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6310 |
4
1. MemberValuePair : Substituted 1 with 0 → SURVIVED 2. MemberValuePair : Substituted 1 with 0 → SURVIVED 3. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MemberValuePair : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6311 | } | |
| 6312 | } | |
| 6313 | } | |
| 6314 | ||
| 6315 | final public void MemberValue() throws ParseException { | |
| 6316 | /*@bgen(jjtree) MemberValue */ | |
| 6317 |
2
1. MemberValue : Substituted 101 with 102 → SURVIVED 2. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTMEMBERVALUE); |
| 6318 |
1
1. MemberValue : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6319 |
1
1. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6320 | try { | |
| 6321 |
94
1. MemberValue : removed conditional - replaced equality check with true → SURVIVED 2. MemberValue : RemoveSwitch 0 mutation → SURVIVED 3. MemberValue : RemoveSwitch 1 mutation → SURVIVED 4. MemberValue : RemoveSwitch 10 mutation → SURVIVED 5. MemberValue : RemoveSwitch 11 mutation → SURVIVED 6. MemberValue : RemoveSwitch 12 mutation → SURVIVED 7. MemberValue : RemoveSwitch 13 mutation → SURVIVED 8. MemberValue : RemoveSwitch 14 mutation → SURVIVED 9. MemberValue : RemoveSwitch 15 mutation → SURVIVED 10. MemberValue : RemoveSwitch 16 mutation → SURVIVED 11. MemberValue : RemoveSwitch 17 mutation → SURVIVED 12. MemberValue : RemoveSwitch 18 mutation → SURVIVED 13. MemberValue : RemoveSwitch 19 mutation → SURVIVED 14. MemberValue : RemoveSwitch 2 mutation → SURVIVED 15. MemberValue : RemoveSwitch 20 mutation → SURVIVED 16. MemberValue : RemoveSwitch 21 mutation → SURVIVED 17. MemberValue : RemoveSwitch 22 mutation → SURVIVED 18. MemberValue : RemoveSwitch 23 mutation → SURVIVED 19. MemberValue : RemoveSwitch 24 mutation → SURVIVED 20. MemberValue : RemoveSwitch 25 mutation → SURVIVED 21. MemberValue : RemoveSwitch 26 mutation → SURVIVED 22. MemberValue : RemoveSwitch 27 mutation → SURVIVED 23. MemberValue : RemoveSwitch 28 mutation → SURVIVED 24. MemberValue : RemoveSwitch 29 mutation → SURVIVED 25. MemberValue : RemoveSwitch 3 mutation → SURVIVED 26. MemberValue : RemoveSwitch 30 mutation → SURVIVED 27. MemberValue : RemoveSwitch 31 mutation → SURVIVED 28. MemberValue : RemoveSwitch 32 mutation → SURVIVED 29. MemberValue : RemoveSwitch 33 mutation → SURVIVED 30. MemberValue : RemoveSwitch 34 mutation → SURVIVED 31. MemberValue : RemoveSwitch 35 mutation → SURVIVED 32. MemberValue : RemoveSwitch 36 mutation → SURVIVED 33. MemberValue : RemoveSwitch 37 mutation → SURVIVED 34. MemberValue : RemoveSwitch 38 mutation → SURVIVED 35. MemberValue : RemoveSwitch 39 mutation → SURVIVED 36. MemberValue : RemoveSwitch 4 mutation → SURVIVED 37. MemberValue : RemoveSwitch 40 mutation → SURVIVED 38. MemberValue : RemoveSwitch 41 mutation → SURVIVED 39. MemberValue : RemoveSwitch 42 mutation → SURVIVED 40. MemberValue : RemoveSwitch 43 mutation → SURVIVED 41. MemberValue : RemoveSwitch 44 mutation → SURVIVED 42. MemberValue : RemoveSwitch 45 mutation → SURVIVED 43. MemberValue : RemoveSwitch 46 mutation → SURVIVED 44. MemberValue : RemoveSwitch 47 mutation → SURVIVED 45. MemberValue : RemoveSwitch 48 mutation → SURVIVED 46. MemberValue : RemoveSwitch 49 mutation → SURVIVED 47. MemberValue : RemoveSwitch 5 mutation → SURVIVED 48. MemberValue : RemoveSwitch 50 mutation → SURVIVED 49. MemberValue : RemoveSwitch 52 mutation → SURVIVED 50. MemberValue : RemoveSwitch 53 mutation → SURVIVED 51. MemberValue : RemoveSwitch 54 mutation → SURVIVED 52. MemberValue : RemoveSwitch 55 mutation → SURVIVED 53. MemberValue : RemoveSwitch 56 mutation → SURVIVED 54. MemberValue : RemoveSwitch 57 mutation → SURVIVED 55. MemberValue : RemoveSwitch 6 mutation → SURVIVED 56. MemberValue : RemoveSwitch 60 mutation → SURVIVED 57. MemberValue : RemoveSwitch 61 mutation → SURVIVED 58. MemberValue : RemoveSwitch 62 mutation → SURVIVED 59. MemberValue : RemoveSwitch 63 mutation → SURVIVED 60. MemberValue : RemoveSwitch 64 mutation → SURVIVED 61. MemberValue : RemoveSwitch 65 mutation → SURVIVED 62. MemberValue : RemoveSwitch 66 mutation → SURVIVED 63. MemberValue : RemoveSwitch 67 mutation → SURVIVED 64. MemberValue : RemoveSwitch 68 mutation → SURVIVED 65. MemberValue : RemoveSwitch 69 mutation → SURVIVED 66. MemberValue : RemoveSwitch 7 mutation → SURVIVED 67. MemberValue : RemoveSwitch 70 mutation → SURVIVED 68. MemberValue : RemoveSwitch 71 mutation → SURVIVED 69. MemberValue : RemoveSwitch 72 mutation → SURVIVED 70. MemberValue : RemoveSwitch 73 mutation → SURVIVED 71. MemberValue : RemoveSwitch 75 mutation → SURVIVED 72. MemberValue : RemoveSwitch 76 mutation → SURVIVED 73. MemberValue : RemoveSwitch 77 mutation → SURVIVED 74. MemberValue : RemoveSwitch 78 mutation → SURVIVED 75. MemberValue : RemoveSwitch 79 mutation → SURVIVED 76. MemberValue : RemoveSwitch 8 mutation → SURVIVED 77. MemberValue : RemoveSwitch 80 mutation → SURVIVED 78. MemberValue : RemoveSwitch 81 mutation → SURVIVED 79. MemberValue : RemoveSwitch 82 mutation → SURVIVED 80. MemberValue : RemoveSwitch 83 mutation → SURVIVED 81. MemberValue : RemoveSwitch 84 mutation → SURVIVED 82. MemberValue : RemoveSwitch 85 mutation → SURVIVED 83. MemberValue : RemoveSwitch 86 mutation → SURVIVED 84. MemberValue : RemoveSwitch 87 mutation → SURVIVED 85. MemberValue : RemoveSwitch 9 mutation → SURVIVED 86. MemberValue : Substituted -1 with 0 → KILLED 87. MemberValue : negated conditional → KILLED 88. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → KILLED 89. MemberValue : removed conditional - replaced equality check with false → KILLED 90. MemberValue : RemoveSwitch 51 mutation → KILLED 91. MemberValue : RemoveSwitch 58 mutation → KILLED 92. MemberValue : RemoveSwitch 59 mutation → KILLED 93. MemberValue : RemoveSwitch 74 mutation → KILLED 94. MemberValue : Switch mutation → KILLED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6322 | case AT: | |
| 6323 |
1
1. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Annotation → NO_COVERAGE |
Annotation(); |
| 6324 | break; | |
| 6325 | case LBRACE: | |
| 6326 |
1
1. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValueArrayInitializer → NO_COVERAGE |
MemberValueArrayInitializer(); |
| 6327 | break; | |
| 6328 | case BOOLEAN: | |
| 6329 | case BYTE: | |
| 6330 | case CHAR: | |
| 6331 | case DOUBLE: | |
| 6332 | case FALSE: | |
| 6333 | case FLOAT: | |
| 6334 | case INT: | |
| 6335 | case LONG: | |
| 6336 | case NEW: | |
| 6337 | case NULL: | |
| 6338 | case SHORT: | |
| 6339 | case SUPER: | |
| 6340 | case THIS: | |
| 6341 | case TRUE: | |
| 6342 | case VOID: | |
| 6343 | case INTEGER_LITERAL: | |
| 6344 | case FLOATING_POINT_LITERAL: | |
| 6345 | case CHARACTER_LITERAL: | |
| 6346 | case STRING_LITERAL: | |
| 6347 | case IDENTIFIER: | |
| 6348 | case LPAREN: | |
| 6349 | case BANG: | |
| 6350 | case TILDE: | |
| 6351 | case INCR: | |
| 6352 | case DECR: | |
| 6353 | case PLUS: | |
| 6354 | case MINUS: | |
| 6355 |
1
1. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ConditionalExpression → KILLED |
ConditionalExpression(); |
| 6356 | break; | |
| 6357 | default: | |
| 6358 |
2
1. MemberValue : Substituted -1 with 0 → SURVIVED 2. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 6359 |
1
1. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 6360 | } | |
| 6361 | } catch (Throwable jjte000) { | |
| 6362 |
3
1. MemberValue : removed conditional - replaced equality check with true → SURVIVED 2. MemberValue : negated conditional → KILLED 3. MemberValue : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6363 |
1
1. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6364 |
1
1. MemberValue : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6365 | } else { | |
| 6366 |
1
1. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6367 | } | |
| 6368 |
3
1. MemberValue : negated conditional → KILLED 2. MemberValue : removed conditional - replaced equality check with false → KILLED 3. MemberValue : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 6369 | { | |
| 6370 | if (true) { | |
| 6371 | throw (RuntimeException) jjte000; | |
| 6372 | } | |
| 6373 | } | |
| 6374 | } | |
| 6375 |
3
1. MemberValue : removed conditional - replaced equality check with false → SURVIVED 2. MemberValue : negated conditional → KILLED 3. MemberValue : removed conditional - replaced equality check with true → KILLED |
if (jjte000 instanceof ParseException) { |
| 6376 | { | |
| 6377 | if (true) { | |
| 6378 | throw (ParseException) jjte000; | |
| 6379 | } | |
| 6380 | } | |
| 6381 | } | |
| 6382 | { | |
| 6383 | if (true) { | |
| 6384 | throw (Error) jjte000; | |
| 6385 | } | |
| 6386 | } | |
| 6387 | } finally { | |
| 6388 |
6
1. MemberValue : negated conditional → SURVIVED 2. MemberValue : removed conditional - replaced equality check with false → SURVIVED 3. MemberValue : removed conditional - replaced equality check with false → SURVIVED 4. MemberValue : removed conditional - replaced equality check with true → SURVIVED 5. MemberValue : negated conditional → KILLED 6. MemberValue : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6389 |
4
1. MemberValue : Substituted 1 with 0 → SURVIVED 2. MemberValue : Substituted 1 with 0 → SURVIVED 3. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MemberValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6390 | } | |
| 6391 | } | |
| 6392 | } | |
| 6393 | ||
| 6394 | final public void MemberValueArrayInitializer() throws ParseException { | |
| 6395 | /*@bgen(jjtree) MemberValueArrayInitializer */ | |
| 6396 |
2
1. MemberValueArrayInitializer : Substituted 102 with 103 → SURVIVED 2. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, |
| 6397 | JJTMEMBERVALUEARRAYINITIALIZER); | |
| 6398 |
1
1. MemberValueArrayInitializer : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6399 |
1
1. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6400 | try { | |
| 6401 |
2
1. MemberValueArrayInitializer : Substituted 79 with 80 → SURVIVED 2. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(LBRACE); |
| 6402 |
1
1. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValue → SURVIVED |
MemberValue(); |
| 6403 | label_45:while (true) { | |
| 6404 |
5
1. MemberValueArrayInitializer : Substituted 2 with 3 → NO_COVERAGE 2. MemberValueArrayInitializer : negated conditional → NO_COVERAGE 3. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_39 → NO_COVERAGE 4. MemberValueArrayInitializer : removed conditional - replaced equality check with false → NO_COVERAGE 5. MemberValueArrayInitializer : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_2_39(2)) { |
| 6405 | ; | |
| 6406 | } else { | |
| 6407 | break label_45; | |
| 6408 | } | |
| 6409 |
2
1. MemberValueArrayInitializer : Substituted 84 with 85 → NO_COVERAGE 2. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 6410 |
1
1. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValue → NO_COVERAGE |
MemberValue(); |
| 6411 | } | |
| 6412 |
7
1. MemberValueArrayInitializer : Substituted -1 with 0 → NO_COVERAGE 2. MemberValueArrayInitializer : negated conditional → NO_COVERAGE 3. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. MemberValueArrayInitializer : removed conditional - replaced equality check with false → NO_COVERAGE 5. MemberValueArrayInitializer : removed conditional - replaced equality check with true → NO_COVERAGE 6. MemberValueArrayInitializer : RemoveSwitch 0 mutation → NO_COVERAGE 7. MemberValueArrayInitializer : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6413 | case COMMA: | |
| 6414 |
2
1. MemberValueArrayInitializer : Substituted 84 with 85 → NO_COVERAGE 2. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(COMMA); |
| 6415 | break; | |
| 6416 | default: | |
| 6417 | ; | |
| 6418 | } | |
| 6419 |
2
1. MemberValueArrayInitializer : Substituted 80 with 81 → NO_COVERAGE 2. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 6420 | } catch (Throwable jjte000) { | |
| 6421 |
3
1. MemberValueArrayInitializer : removed conditional - replaced equality check with true → SURVIVED 2. MemberValueArrayInitializer : negated conditional → KILLED 3. MemberValueArrayInitializer : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6422 |
1
1. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6423 |
1
1. MemberValueArrayInitializer : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6424 | } else { | |
| 6425 |
1
1. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6426 | } | |
| 6427 |
3
1. MemberValueArrayInitializer : removed conditional - replaced equality check with true → SURVIVED 2. MemberValueArrayInitializer : negated conditional → KILLED 3. MemberValueArrayInitializer : removed conditional - replaced equality check with false → KILLED |
if (jjte000 instanceof RuntimeException) { |
| 6428 | { | |
| 6429 | if (true) { | |
| 6430 | throw (RuntimeException) jjte000; | |
| 6431 | } | |
| 6432 | } | |
| 6433 | } | |
| 6434 |
3
1. MemberValueArrayInitializer : negated conditional → SURVIVED 2. MemberValueArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 3. MemberValueArrayInitializer : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6435 | { | |
| 6436 | if (true) { | |
| 6437 | throw (ParseException) jjte000; | |
| 6438 | } | |
| 6439 | } | |
| 6440 | } | |
| 6441 | { | |
| 6442 | if (true) { | |
| 6443 | throw (Error) jjte000; | |
| 6444 | } | |
| 6445 | } | |
| 6446 | } finally { | |
| 6447 |
6
1. MemberValueArrayInitializer : negated conditional → SURVIVED 2. MemberValueArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 3. MemberValueArrayInitializer : removed conditional - replaced equality check with false → SURVIVED 4. MemberValueArrayInitializer : removed conditional - replaced equality check with true → SURVIVED 5. MemberValueArrayInitializer : negated conditional → KILLED 6. MemberValueArrayInitializer : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6448 |
4
1. MemberValueArrayInitializer : Substituted 1 with 0 → SURVIVED 2. MemberValueArrayInitializer : Substituted 1 with 0 → SURVIVED 3. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. MemberValueArrayInitializer : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6449 | } | |
| 6450 | } | |
| 6451 | } | |
| 6452 | ||
| 6453 | /* Annotation Types. */ | |
| 6454 | final public void AnnotationTypeDeclaration(int modifiers) throws | |
| 6455 | ParseException { | |
| 6456 | /*@bgen(jjtree) AnnotationTypeDeclaration */ | |
| 6457 |
2
1. AnnotationTypeDeclaration : Substituted 103 with 104 → SURVIVED 2. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → KILLED |
SimpleNode jjtn000 = new SimpleNode(this, JJTANNOTATIONTYPEDECLARATION); |
| 6458 |
1
1. AnnotationTypeDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6459 |
1
1. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6460 | try { | |
| 6461 |
2
1. AnnotationTypeDeclaration : Substituted 86 with 87 → SURVIVED 2. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(AT); |
| 6462 |
2
1. AnnotationTypeDeclaration : Substituted 41 with 42 → SURVIVED 2. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(INTERFACE); |
| 6463 |
2
1. AnnotationTypeDeclaration : Substituted 74 with 75 → SURVIVED 2. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(IDENTIFIER); |
| 6464 |
1
1. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AnnotationTypeBody → SURVIVED |
AnnotationTypeBody(); |
| 6465 | } catch (Throwable jjte000) { | |
| 6466 |
3
1. AnnotationTypeDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. AnnotationTypeDeclaration : negated conditional → KILLED 3. AnnotationTypeDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6467 |
1
1. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6468 |
1
1. AnnotationTypeDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6469 | } else { | |
| 6470 |
1
1. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6471 | } | |
| 6472 |
3
1. AnnotationTypeDeclaration : negated conditional → SURVIVED 2. AnnotationTypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. AnnotationTypeDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 6473 | { | |
| 6474 | if (true) { | |
| 6475 | throw (RuntimeException) jjte000; | |
| 6476 | } | |
| 6477 | } | |
| 6478 | } | |
| 6479 |
3
1. AnnotationTypeDeclaration : negated conditional → SURVIVED 2. AnnotationTypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. AnnotationTypeDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6480 | { | |
| 6481 | if (true) { | |
| 6482 | throw (ParseException) jjte000; | |
| 6483 | } | |
| 6484 | } | |
| 6485 | } | |
| 6486 | { | |
| 6487 | if (true) { | |
| 6488 | throw (Error) jjte000; | |
| 6489 | } | |
| 6490 | } | |
| 6491 | } finally { | |
| 6492 |
6
1. AnnotationTypeDeclaration : negated conditional → SURVIVED 2. AnnotationTypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. AnnotationTypeDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. AnnotationTypeDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. AnnotationTypeDeclaration : negated conditional → KILLED 6. AnnotationTypeDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6493 |
4
1. AnnotationTypeDeclaration : Substituted 1 with 0 → SURVIVED 2. AnnotationTypeDeclaration : Substituted 1 with 0 → SURVIVED 3. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. AnnotationTypeDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6494 | } | |
| 6495 | } | |
| 6496 | } | |
| 6497 | ||
| 6498 | final public void AnnotationTypeBody() throws ParseException { | |
| 6499 | /*@bgen(jjtree) AnnotationTypeBody */ | |
| 6500 |
2
1. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → NO_COVERAGE 2. AnnotationTypeBody : Substituted 104 with 105 → NO_COVERAGE |
SimpleNode jjtn000 = new SimpleNode(this, JJTANNOTATIONTYPEBODY); |
| 6501 |
1
1. AnnotationTypeBody : Substituted 1 with 0 → NO_COVERAGE |
boolean jjtc000 = true; |
| 6502 |
1
1. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → NO_COVERAGE |
jjtree.openNodeScope(jjtn000); |
| 6503 | try { | |
| 6504 |
2
1. AnnotationTypeBody : Substituted 79 with 80 → NO_COVERAGE 2. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LBRACE); |
| 6505 | label_46:while (true) { | |
| 6506 |
80
1. AnnotationTypeBody : Substituted -1 with 0 → NO_COVERAGE 2. AnnotationTypeBody : negated conditional → NO_COVERAGE 3. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. AnnotationTypeBody : removed conditional - replaced equality check with false → NO_COVERAGE 5. AnnotationTypeBody : removed conditional - replaced equality check with true → NO_COVERAGE 6. AnnotationTypeBody : RemoveSwitch 0 mutation → NO_COVERAGE 7. AnnotationTypeBody : RemoveSwitch 1 mutation → NO_COVERAGE 8. AnnotationTypeBody : RemoveSwitch 10 mutation → NO_COVERAGE 9. AnnotationTypeBody : RemoveSwitch 11 mutation → NO_COVERAGE 10. AnnotationTypeBody : RemoveSwitch 12 mutation → NO_COVERAGE 11. AnnotationTypeBody : RemoveSwitch 13 mutation → NO_COVERAGE 12. AnnotationTypeBody : RemoveSwitch 14 mutation → NO_COVERAGE 13. AnnotationTypeBody : RemoveSwitch 15 mutation → NO_COVERAGE 14. AnnotationTypeBody : RemoveSwitch 16 mutation → NO_COVERAGE 15. AnnotationTypeBody : RemoveSwitch 17 mutation → NO_COVERAGE 16. AnnotationTypeBody : RemoveSwitch 18 mutation → NO_COVERAGE 17. AnnotationTypeBody : RemoveSwitch 19 mutation → NO_COVERAGE 18. AnnotationTypeBody : RemoveSwitch 2 mutation → NO_COVERAGE 19. AnnotationTypeBody : RemoveSwitch 20 mutation → NO_COVERAGE 20. AnnotationTypeBody : RemoveSwitch 21 mutation → NO_COVERAGE 21. AnnotationTypeBody : RemoveSwitch 22 mutation → NO_COVERAGE 22. AnnotationTypeBody : RemoveSwitch 23 mutation → NO_COVERAGE 23. AnnotationTypeBody : RemoveSwitch 24 mutation → NO_COVERAGE 24. AnnotationTypeBody : RemoveSwitch 25 mutation → NO_COVERAGE 25. AnnotationTypeBody : RemoveSwitch 26 mutation → NO_COVERAGE 26. AnnotationTypeBody : RemoveSwitch 27 mutation → NO_COVERAGE 27. AnnotationTypeBody : RemoveSwitch 28 mutation → NO_COVERAGE 28. AnnotationTypeBody : RemoveSwitch 29 mutation → NO_COVERAGE 29. AnnotationTypeBody : RemoveSwitch 3 mutation → NO_COVERAGE 30. AnnotationTypeBody : RemoveSwitch 30 mutation → NO_COVERAGE 31. AnnotationTypeBody : RemoveSwitch 31 mutation → NO_COVERAGE 32. AnnotationTypeBody : RemoveSwitch 32 mutation → NO_COVERAGE 33. AnnotationTypeBody : RemoveSwitch 33 mutation → NO_COVERAGE 34. AnnotationTypeBody : RemoveSwitch 34 mutation → NO_COVERAGE 35. AnnotationTypeBody : RemoveSwitch 35 mutation → NO_COVERAGE 36. AnnotationTypeBody : RemoveSwitch 36 mutation → NO_COVERAGE 37. AnnotationTypeBody : RemoveSwitch 37 mutation → NO_COVERAGE 38. AnnotationTypeBody : RemoveSwitch 38 mutation → NO_COVERAGE 39. AnnotationTypeBody : RemoveSwitch 39 mutation → NO_COVERAGE 40. AnnotationTypeBody : RemoveSwitch 4 mutation → NO_COVERAGE 41. AnnotationTypeBody : RemoveSwitch 40 mutation → NO_COVERAGE 42. AnnotationTypeBody : RemoveSwitch 41 mutation → NO_COVERAGE 43. AnnotationTypeBody : RemoveSwitch 42 mutation → NO_COVERAGE 44. AnnotationTypeBody : RemoveSwitch 43 mutation → NO_COVERAGE 45. AnnotationTypeBody : RemoveSwitch 44 mutation → NO_COVERAGE 46. AnnotationTypeBody : RemoveSwitch 45 mutation → NO_COVERAGE 47. AnnotationTypeBody : RemoveSwitch 46 mutation → NO_COVERAGE 48. AnnotationTypeBody : RemoveSwitch 47 mutation → NO_COVERAGE 49. AnnotationTypeBody : RemoveSwitch 48 mutation → NO_COVERAGE 50. AnnotationTypeBody : RemoveSwitch 49 mutation → NO_COVERAGE 51. AnnotationTypeBody : RemoveSwitch 5 mutation → NO_COVERAGE 52. AnnotationTypeBody : RemoveSwitch 50 mutation → NO_COVERAGE 53. AnnotationTypeBody : RemoveSwitch 51 mutation → NO_COVERAGE 54. AnnotationTypeBody : RemoveSwitch 52 mutation → NO_COVERAGE 55. AnnotationTypeBody : RemoveSwitch 53 mutation → NO_COVERAGE 56. AnnotationTypeBody : RemoveSwitch 54 mutation → NO_COVERAGE 57. AnnotationTypeBody : RemoveSwitch 55 mutation → NO_COVERAGE 58. AnnotationTypeBody : RemoveSwitch 56 mutation → NO_COVERAGE 59. AnnotationTypeBody : RemoveSwitch 57 mutation → NO_COVERAGE 60. AnnotationTypeBody : RemoveSwitch 58 mutation → NO_COVERAGE 61. AnnotationTypeBody : RemoveSwitch 59 mutation → NO_COVERAGE 62. AnnotationTypeBody : RemoveSwitch 6 mutation → NO_COVERAGE 63. AnnotationTypeBody : RemoveSwitch 60 mutation → NO_COVERAGE 64. AnnotationTypeBody : RemoveSwitch 61 mutation → NO_COVERAGE 65. AnnotationTypeBody : RemoveSwitch 62 mutation → NO_COVERAGE 66. AnnotationTypeBody : RemoveSwitch 63 mutation → NO_COVERAGE 67. AnnotationTypeBody : RemoveSwitch 64 mutation → NO_COVERAGE 68. AnnotationTypeBody : RemoveSwitch 65 mutation → NO_COVERAGE 69. AnnotationTypeBody : RemoveSwitch 66 mutation → NO_COVERAGE 70. AnnotationTypeBody : RemoveSwitch 67 mutation → NO_COVERAGE 71. AnnotationTypeBody : RemoveSwitch 68 mutation → NO_COVERAGE 72. AnnotationTypeBody : RemoveSwitch 69 mutation → NO_COVERAGE 73. AnnotationTypeBody : RemoveSwitch 7 mutation → NO_COVERAGE 74. AnnotationTypeBody : RemoveSwitch 70 mutation → NO_COVERAGE 75. AnnotationTypeBody : RemoveSwitch 71 mutation → NO_COVERAGE 76. AnnotationTypeBody : RemoveSwitch 72 mutation → NO_COVERAGE 77. AnnotationTypeBody : RemoveSwitch 73 mutation → NO_COVERAGE 78. AnnotationTypeBody : RemoveSwitch 8 mutation → NO_COVERAGE 79. AnnotationTypeBody : RemoveSwitch 9 mutation → NO_COVERAGE 80. AnnotationTypeBody : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6507 | case ABSTRACT: | |
| 6508 | case BOOLEAN: | |
| 6509 | case BYTE: | |
| 6510 | case CHAR: | |
| 6511 | case CLASS: | |
| 6512 | case DOUBLE: | |
| 6513 | case ENUM: | |
| 6514 | case FINAL: | |
| 6515 | case FLOAT: | |
| 6516 | case INT: | |
| 6517 | case INTERFACE: | |
| 6518 | case LONG: | |
| 6519 | case NATIVE: | |
| 6520 | case PRIVATE: | |
| 6521 | case PROTECTED: | |
| 6522 | case PUBLIC: | |
| 6523 | case SHORT: | |
| 6524 | case STATIC: | |
| 6525 | case STRICTFP: | |
| 6526 | case SYNCHRONIZED: | |
| 6527 | case TRANSIENT: | |
| 6528 | case VOLATILE: | |
| 6529 | case IDENTIFIER: | |
| 6530 | case SEMICOLON: | |
| 6531 | case AT: | |
| 6532 | ; | |
| 6533 | break; | |
| 6534 | default: | |
| 6535 | break label_46; | |
| 6536 | } | |
| 6537 |
1
1. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AnnotationTypeMemberDeclaration → NO_COVERAGE |
AnnotationTypeMemberDeclaration(); |
| 6538 | } | |
| 6539 |
2
1. AnnotationTypeBody : Substituted 80 with 81 → NO_COVERAGE 2. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RBRACE); |
| 6540 | } catch (Throwable jjte000) { | |
| 6541 |
3
1. AnnotationTypeBody : negated conditional → NO_COVERAGE 2. AnnotationTypeBody : removed conditional - replaced equality check with false → NO_COVERAGE 3. AnnotationTypeBody : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 6542 |
1
1. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → NO_COVERAGE |
jjtree.clearNodeScope(jjtn000); |
| 6543 |
1
1. AnnotationTypeBody : Substituted 0 with 1 → NO_COVERAGE |
jjtc000 = false; |
| 6544 | } else { | |
| 6545 |
1
1. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6546 | } | |
| 6547 |
3
1. AnnotationTypeBody : negated conditional → NO_COVERAGE 2. AnnotationTypeBody : removed conditional - replaced equality check with false → NO_COVERAGE 3. AnnotationTypeBody : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof RuntimeException) { |
| 6548 | { | |
| 6549 | if (true) { | |
| 6550 | throw (RuntimeException) jjte000; | |
| 6551 | } | |
| 6552 | } | |
| 6553 | } | |
| 6554 |
3
1. AnnotationTypeBody : negated conditional → NO_COVERAGE 2. AnnotationTypeBody : removed conditional - replaced equality check with false → NO_COVERAGE 3. AnnotationTypeBody : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjte000 instanceof ParseException) { |
| 6555 | { | |
| 6556 | if (true) { | |
| 6557 | throw (ParseException) jjte000; | |
| 6558 | } | |
| 6559 | } | |
| 6560 | } | |
| 6561 | { | |
| 6562 | if (true) { | |
| 6563 | throw (Error) jjte000; | |
| 6564 | } | |
| 6565 | } | |
| 6566 | } finally { | |
| 6567 |
6
1. AnnotationTypeBody : negated conditional → NO_COVERAGE 2. AnnotationTypeBody : negated conditional → NO_COVERAGE 3. AnnotationTypeBody : removed conditional - replaced equality check with false → NO_COVERAGE 4. AnnotationTypeBody : removed conditional - replaced equality check with false → NO_COVERAGE 5. AnnotationTypeBody : removed conditional - replaced equality check with true → NO_COVERAGE 6. AnnotationTypeBody : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jjtc000) { |
| 6568 |
4
1. AnnotationTypeBody : Substituted 1 with 0 → NO_COVERAGE 2. AnnotationTypeBody : Substituted 1 with 0 → NO_COVERAGE 3. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE 4. AnnotationTypeBody : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → NO_COVERAGE |
jjtree.closeNodeScope(jjtn000, true); |
| 6569 | } | |
| 6570 | } | |
| 6571 | } | |
| 6572 | ||
| 6573 | final public void AnnotationTypeMemberDeclaration() throws ParseException { | |
| 6574 | /*@bgen(jjtree) AnnotationTypeMemberDeclaration */ | |
| 6575 |
2
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. AnnotationTypeMemberDeclaration : Substituted 105 with 106 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, |
| 6576 | JJTANNOTATIONTYPEMEMBERDECLARATION); | |
| 6577 |
1
1. AnnotationTypeMemberDeclaration : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6578 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6579 | int modifiers; | |
| 6580 | try { | |
| 6581 |
80
1. AnnotationTypeMemberDeclaration : Substituted -1 with 0 → SURVIVED 2. AnnotationTypeMemberDeclaration : negated conditional → SURVIVED 3. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. AnnotationTypeMemberDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. AnnotationTypeMemberDeclaration : RemoveSwitch 1 mutation → SURVIVED 8. AnnotationTypeMemberDeclaration : RemoveSwitch 10 mutation → SURVIVED 9. AnnotationTypeMemberDeclaration : RemoveSwitch 11 mutation → SURVIVED 10. AnnotationTypeMemberDeclaration : RemoveSwitch 12 mutation → SURVIVED 11. AnnotationTypeMemberDeclaration : RemoveSwitch 13 mutation → SURVIVED 12. AnnotationTypeMemberDeclaration : RemoveSwitch 14 mutation → SURVIVED 13. AnnotationTypeMemberDeclaration : RemoveSwitch 15 mutation → SURVIVED 14. AnnotationTypeMemberDeclaration : RemoveSwitch 16 mutation → SURVIVED 15. AnnotationTypeMemberDeclaration : RemoveSwitch 17 mutation → SURVIVED 16. AnnotationTypeMemberDeclaration : RemoveSwitch 18 mutation → SURVIVED 17. AnnotationTypeMemberDeclaration : RemoveSwitch 19 mutation → SURVIVED 18. AnnotationTypeMemberDeclaration : RemoveSwitch 2 mutation → SURVIVED 19. AnnotationTypeMemberDeclaration : RemoveSwitch 20 mutation → SURVIVED 20. AnnotationTypeMemberDeclaration : RemoveSwitch 21 mutation → SURVIVED 21. AnnotationTypeMemberDeclaration : RemoveSwitch 22 mutation → SURVIVED 22. AnnotationTypeMemberDeclaration : RemoveSwitch 23 mutation → SURVIVED 23. AnnotationTypeMemberDeclaration : RemoveSwitch 24 mutation → SURVIVED 24. AnnotationTypeMemberDeclaration : RemoveSwitch 25 mutation → SURVIVED 25. AnnotationTypeMemberDeclaration : RemoveSwitch 26 mutation → SURVIVED 26. AnnotationTypeMemberDeclaration : RemoveSwitch 27 mutation → SURVIVED 27. AnnotationTypeMemberDeclaration : RemoveSwitch 28 mutation → SURVIVED 28. AnnotationTypeMemberDeclaration : RemoveSwitch 29 mutation → SURVIVED 29. AnnotationTypeMemberDeclaration : RemoveSwitch 3 mutation → SURVIVED 30. AnnotationTypeMemberDeclaration : RemoveSwitch 30 mutation → SURVIVED 31. AnnotationTypeMemberDeclaration : RemoveSwitch 31 mutation → SURVIVED 32. AnnotationTypeMemberDeclaration : RemoveSwitch 32 mutation → SURVIVED 33. AnnotationTypeMemberDeclaration : RemoveSwitch 33 mutation → SURVIVED 34. AnnotationTypeMemberDeclaration : RemoveSwitch 34 mutation → SURVIVED 35. AnnotationTypeMemberDeclaration : RemoveSwitch 35 mutation → SURVIVED 36. AnnotationTypeMemberDeclaration : RemoveSwitch 36 mutation → SURVIVED 37. AnnotationTypeMemberDeclaration : RemoveSwitch 37 mutation → SURVIVED 38. AnnotationTypeMemberDeclaration : RemoveSwitch 38 mutation → SURVIVED 39. AnnotationTypeMemberDeclaration : RemoveSwitch 39 mutation → SURVIVED 40. AnnotationTypeMemberDeclaration : RemoveSwitch 4 mutation → SURVIVED 41. AnnotationTypeMemberDeclaration : RemoveSwitch 40 mutation → SURVIVED 42. AnnotationTypeMemberDeclaration : RemoveSwitch 41 mutation → SURVIVED 43. AnnotationTypeMemberDeclaration : RemoveSwitch 42 mutation → SURVIVED 44. AnnotationTypeMemberDeclaration : RemoveSwitch 43 mutation → SURVIVED 45. AnnotationTypeMemberDeclaration : RemoveSwitch 44 mutation → SURVIVED 46. AnnotationTypeMemberDeclaration : RemoveSwitch 45 mutation → SURVIVED 47. AnnotationTypeMemberDeclaration : RemoveSwitch 46 mutation → SURVIVED 48. AnnotationTypeMemberDeclaration : RemoveSwitch 47 mutation → SURVIVED 49. AnnotationTypeMemberDeclaration : RemoveSwitch 48 mutation → SURVIVED 50. AnnotationTypeMemberDeclaration : RemoveSwitch 49 mutation → SURVIVED 51. AnnotationTypeMemberDeclaration : RemoveSwitch 5 mutation → SURVIVED 52. AnnotationTypeMemberDeclaration : RemoveSwitch 50 mutation → SURVIVED 53. AnnotationTypeMemberDeclaration : RemoveSwitch 51 mutation → SURVIVED 54. AnnotationTypeMemberDeclaration : RemoveSwitch 52 mutation → SURVIVED 55. AnnotationTypeMemberDeclaration : RemoveSwitch 53 mutation → SURVIVED 56. AnnotationTypeMemberDeclaration : RemoveSwitch 54 mutation → SURVIVED 57. AnnotationTypeMemberDeclaration : RemoveSwitch 55 mutation → SURVIVED 58. AnnotationTypeMemberDeclaration : RemoveSwitch 56 mutation → SURVIVED 59. AnnotationTypeMemberDeclaration : RemoveSwitch 57 mutation → SURVIVED 60. AnnotationTypeMemberDeclaration : RemoveSwitch 58 mutation → SURVIVED 61. AnnotationTypeMemberDeclaration : RemoveSwitch 59 mutation → SURVIVED 62. AnnotationTypeMemberDeclaration : RemoveSwitch 6 mutation → SURVIVED 63. AnnotationTypeMemberDeclaration : RemoveSwitch 60 mutation → SURVIVED 64. AnnotationTypeMemberDeclaration : RemoveSwitch 61 mutation → SURVIVED 65. AnnotationTypeMemberDeclaration : RemoveSwitch 62 mutation → SURVIVED 66. AnnotationTypeMemberDeclaration : RemoveSwitch 63 mutation → SURVIVED 67. AnnotationTypeMemberDeclaration : RemoveSwitch 64 mutation → SURVIVED 68. AnnotationTypeMemberDeclaration : RemoveSwitch 65 mutation → SURVIVED 69. AnnotationTypeMemberDeclaration : RemoveSwitch 66 mutation → SURVIVED 70. AnnotationTypeMemberDeclaration : RemoveSwitch 67 mutation → SURVIVED 71. AnnotationTypeMemberDeclaration : RemoveSwitch 68 mutation → SURVIVED 72. AnnotationTypeMemberDeclaration : RemoveSwitch 69 mutation → SURVIVED 73. AnnotationTypeMemberDeclaration : RemoveSwitch 7 mutation → SURVIVED 74. AnnotationTypeMemberDeclaration : RemoveSwitch 70 mutation → SURVIVED 75. AnnotationTypeMemberDeclaration : RemoveSwitch 71 mutation → SURVIVED 76. AnnotationTypeMemberDeclaration : RemoveSwitch 72 mutation → SURVIVED 77. AnnotationTypeMemberDeclaration : RemoveSwitch 73 mutation → SURVIVED 78. AnnotationTypeMemberDeclaration : RemoveSwitch 8 mutation → SURVIVED 79. AnnotationTypeMemberDeclaration : RemoveSwitch 9 mutation → SURVIVED 80. AnnotationTypeMemberDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6582 | case ABSTRACT: | |
| 6583 | case BOOLEAN: | |
| 6584 | case BYTE: | |
| 6585 | case CHAR: | |
| 6586 | case CLASS: | |
| 6587 | case DOUBLE: | |
| 6588 | case ENUM: | |
| 6589 | case FINAL: | |
| 6590 | case FLOAT: | |
| 6591 | case INT: | |
| 6592 | case INTERFACE: | |
| 6593 | case LONG: | |
| 6594 | case NATIVE: | |
| 6595 | case PRIVATE: | |
| 6596 | case PROTECTED: | |
| 6597 | case PUBLIC: | |
| 6598 | case SHORT: | |
| 6599 | case STATIC: | |
| 6600 | case STRICTFP: | |
| 6601 | case SYNCHRONIZED: | |
| 6602 | case TRANSIENT: | |
| 6603 | case VOLATILE: | |
| 6604 | case IDENTIFIER: | |
| 6605 | case AT: | |
| 6606 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Modifiers → SURVIVED |
modifiers = Modifiers(); |
| 6607 |
5
1. AnnotationTypeMemberDeclaration : Substituted 2147483647 with -2147483648 → SURVIVED 2. AnnotationTypeMemberDeclaration : negated conditional → SURVIVED 3. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_40 → SURVIVED 4. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jj_2_40(2147483647)) { |
| 6608 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::Type → NO_COVERAGE |
Type(); |
| 6609 |
2
1. AnnotationTypeMemberDeclaration : Substituted 74 with 75 → NO_COVERAGE 2. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(IDENTIFIER); |
| 6610 |
2
1. AnnotationTypeMemberDeclaration : Substituted 77 with 78 → NO_COVERAGE 2. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(LPAREN); |
| 6611 |
2
1. AnnotationTypeMemberDeclaration : Substituted 78 with 79 → NO_COVERAGE 2. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(RPAREN); |
| 6612 |
7
1. AnnotationTypeMemberDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. AnnotationTypeMemberDeclaration : negated conditional → NO_COVERAGE 3. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → NO_COVERAGE 4. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → NO_COVERAGE 5. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → NO_COVERAGE 6. AnnotationTypeMemberDeclaration : RemoveSwitch 0 mutation → NO_COVERAGE 7. AnnotationTypeMemberDeclaration : Switch mutation → NO_COVERAGE |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6613 | case _DEFAULT: | |
| 6614 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::DefaultValue → NO_COVERAGE |
DefaultValue(); |
| 6615 | break; | |
| 6616 | default: | |
| 6617 | ; | |
| 6618 | } | |
| 6619 |
2
1. AnnotationTypeMemberDeclaration : Substituted 83 with 84 → NO_COVERAGE 2. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 6620 | } else { | |
| 6621 |
19
1. AnnotationTypeMemberDeclaration : Substituted -1 with 0 → SURVIVED 2. AnnotationTypeMemberDeclaration : negated conditional → SURVIVED 3. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 4. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → SURVIVED 5. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → SURVIVED 6. AnnotationTypeMemberDeclaration : RemoveSwitch 0 mutation → SURVIVED 7. AnnotationTypeMemberDeclaration : RemoveSwitch 1 mutation → SURVIVED 8. AnnotationTypeMemberDeclaration : RemoveSwitch 10 mutation → SURVIVED 9. AnnotationTypeMemberDeclaration : RemoveSwitch 11 mutation → SURVIVED 10. AnnotationTypeMemberDeclaration : RemoveSwitch 12 mutation → SURVIVED 11. AnnotationTypeMemberDeclaration : RemoveSwitch 2 mutation → SURVIVED 12. AnnotationTypeMemberDeclaration : RemoveSwitch 3 mutation → SURVIVED 13. AnnotationTypeMemberDeclaration : RemoveSwitch 4 mutation → SURVIVED 14. AnnotationTypeMemberDeclaration : RemoveSwitch 5 mutation → SURVIVED 15. AnnotationTypeMemberDeclaration : RemoveSwitch 6 mutation → SURVIVED 16. AnnotationTypeMemberDeclaration : RemoveSwitch 7 mutation → SURVIVED 17. AnnotationTypeMemberDeclaration : RemoveSwitch 8 mutation → SURVIVED 18. AnnotationTypeMemberDeclaration : RemoveSwitch 9 mutation → SURVIVED 19. AnnotationTypeMemberDeclaration : Switch mutation → SURVIVED |
switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { |
| 6622 | case CLASS: | |
| 6623 | case INTERFACE: | |
| 6624 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::ClassOrInterfaceDeclaration → NO_COVERAGE |
ClassOrInterfaceDeclaration(modifiers); |
| 6625 | break; | |
| 6626 | case ENUM: | |
| 6627 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::EnumDeclaration → NO_COVERAGE |
EnumDeclaration(modifiers); |
| 6628 | break; | |
| 6629 | case AT: | |
| 6630 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::AnnotationTypeDeclaration → NO_COVERAGE |
AnnotationTypeDeclaration(modifiers); |
| 6631 | break; | |
| 6632 | case BOOLEAN: | |
| 6633 | case BYTE: | |
| 6634 | case CHAR: | |
| 6635 | case DOUBLE: | |
| 6636 | case FLOAT: | |
| 6637 | case INT: | |
| 6638 | case LONG: | |
| 6639 | case SHORT: | |
| 6640 | case IDENTIFIER: | |
| 6641 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::FieldDeclaration → KILLED |
FieldDeclaration(modifiers); |
| 6642 | break; | |
| 6643 | default: | |
| 6644 |
2
1. AnnotationTypeMemberDeclaration : Substituted -1 with 0 → NO_COVERAGE 2. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token( -1); |
| 6645 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → NO_COVERAGE |
throw new ParseException(); |
| 6646 | } | |
| 6647 | } | |
| 6648 | break; | |
| 6649 | case SEMICOLON: | |
| 6650 |
2
1. AnnotationTypeMemberDeclaration : Substituted 83 with 84 → NO_COVERAGE 2. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → NO_COVERAGE |
jj_consume_token(SEMICOLON); |
| 6651 | break; | |
| 6652 | default: | |
| 6653 |
2
1. AnnotationTypeMemberDeclaration : Substituted -1 with 0 → SURVIVED 2. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token( -1); |
| 6654 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED |
throw new ParseException(); |
| 6655 | } | |
| 6656 | } catch (Throwable jjte000) { | |
| 6657 |
3
1. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → SURVIVED 2. AnnotationTypeMemberDeclaration : negated conditional → KILLED 3. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6658 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6659 |
1
1. AnnotationTypeMemberDeclaration : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6660 | } else { | |
| 6661 |
1
1. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6662 | } | |
| 6663 |
3
1. AnnotationTypeMemberDeclaration : negated conditional → SURVIVED 2. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 6664 | { | |
| 6665 | if (true) { | |
| 6666 | throw (RuntimeException) jjte000; | |
| 6667 | } | |
| 6668 | } | |
| 6669 | } | |
| 6670 |
3
1. AnnotationTypeMemberDeclaration : negated conditional → SURVIVED 2. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6671 | { | |
| 6672 | if (true) { | |
| 6673 | throw (ParseException) jjte000; | |
| 6674 | } | |
| 6675 | } | |
| 6676 | } | |
| 6677 | { | |
| 6678 | if (true) { | |
| 6679 | throw (Error) jjte000; | |
| 6680 | } | |
| 6681 | } | |
| 6682 | } finally { | |
| 6683 |
6
1. AnnotationTypeMemberDeclaration : negated conditional → SURVIVED 2. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → SURVIVED 3. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with false → SURVIVED 4. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → SURVIVED 5. AnnotationTypeMemberDeclaration : negated conditional → KILLED 6. AnnotationTypeMemberDeclaration : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6684 |
4
1. AnnotationTypeMemberDeclaration : Substituted 1 with 0 → SURVIVED 2. AnnotationTypeMemberDeclaration : Substituted 1 with 0 → SURVIVED 3. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. AnnotationTypeMemberDeclaration : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6685 | } | |
| 6686 | } | |
| 6687 | } | |
| 6688 | ||
| 6689 | final public void DefaultValue() throws ParseException { | |
| 6690 | /*@bgen(jjtree) DefaultValue */ | |
| 6691 |
2
1. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/SimpleNode::<init> → SURVIVED 2. DefaultValue : Substituted 106 with 107 → SURVIVED |
SimpleNode jjtn000 = new SimpleNode(this, JJTDEFAULTVALUE); |
| 6692 |
1
1. DefaultValue : Substituted 1 with 0 → KILLED |
boolean jjtc000 = true; |
| 6693 |
1
1. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::openNodeScope → KILLED |
jjtree.openNodeScope(jjtn000); |
| 6694 | try { | |
| 6695 |
2
1. DefaultValue : Substituted 24 with 25 → SURVIVED 2. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED |
jj_consume_token(_DEFAULT); |
| 6696 |
1
1. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::MemberValue → SURVIVED |
MemberValue(); |
| 6697 | } catch (Throwable jjte000) { | |
| 6698 |
3
1. DefaultValue : removed conditional - replaced equality check with true → SURVIVED 2. DefaultValue : negated conditional → KILLED 3. DefaultValue : removed conditional - replaced equality check with false → KILLED |
if (jjtc000) { |
| 6699 |
1
1. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::clearNodeScope → SURVIVED |
jjtree.clearNodeScope(jjtn000); |
| 6700 |
1
1. DefaultValue : Substituted 0 with 1 → KILLED |
jjtc000 = false; |
| 6701 | } else { | |
| 6702 |
1
1. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::popNode → NO_COVERAGE |
jjtree.popNode(); |
| 6703 | } | |
| 6704 |
3
1. DefaultValue : negated conditional → SURVIVED 2. DefaultValue : removed conditional - replaced equality check with false → SURVIVED 3. DefaultValue : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof RuntimeException) { |
| 6705 | { | |
| 6706 | if (true) { | |
| 6707 | throw (RuntimeException) jjte000; | |
| 6708 | } | |
| 6709 | } | |
| 6710 | } | |
| 6711 |
3
1. DefaultValue : negated conditional → SURVIVED 2. DefaultValue : removed conditional - replaced equality check with false → SURVIVED 3. DefaultValue : removed conditional - replaced equality check with true → SURVIVED |
if (jjte000 instanceof ParseException) { |
| 6712 | { | |
| 6713 | if (true) { | |
| 6714 | throw (ParseException) jjte000; | |
| 6715 | } | |
| 6716 | } | |
| 6717 | } | |
| 6718 | { | |
| 6719 | if (true) { | |
| 6720 | throw (Error) jjte000; | |
| 6721 | } | |
| 6722 | } | |
| 6723 | } finally { | |
| 6724 |
6
1. DefaultValue : negated conditional → SURVIVED 2. DefaultValue : removed conditional - replaced equality check with false → SURVIVED 3. DefaultValue : removed conditional - replaced equality check with false → SURVIVED 4. DefaultValue : removed conditional - replaced equality check with true → SURVIVED 5. DefaultValue : negated conditional → KILLED 6. DefaultValue : removed conditional - replaced equality check with true → KILLED |
if (jjtc000) { |
| 6725 |
4
1. DefaultValue : Substituted 1 with 0 → SURVIVED 2. DefaultValue : Substituted 1 with 0 → SURVIVED 3. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED 4. DefaultValue : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::closeNodeScope → SURVIVED |
jjtree.closeNodeScope(jjtn000, true); |
| 6726 | } | |
| 6727 | } | |
| 6728 | } | |
| 6729 | ||
| 6730 | final private boolean jj_2_1(int xla) { | |
| 6731 |
1
1. jj_2_1 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6732 |
2
1. jj_2_1 : Removed assignment to member variable jj_scanpos → KILLED 2. jj_2_1 : Removed assignment to member variable jj_lastpos → KILLED |
jj_lastpos = jj_scanpos = token; |
| 6733 | try { | |
| 6734 |
8
1. jj_2_1 : Substituted 1 with 0 → SURVIVED 2. jj_2_1 : removed conditional - replaced equality check with false → SURVIVED 3. jj_2_1 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_1 → KILLED 4. jj_2_1 : Substituted 0 with 1 → KILLED 5. jj_2_1 : negated conditional → KILLED 6. jj_2_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_1 → KILLED 7. jj_2_1 : removed conditional - replaced equality check with true → KILLED 8. jj_2_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return!jj_3_1(); |
| 6735 | } catch (LookaheadSuccess ls) { | |
| 6736 |
3
1. jj_2_1 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_1 → NO_COVERAGE 2. jj_2_1 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6737 | } | |
| 6738 | } | |
| 6739 | ||
| 6740 | final private boolean jj_2_2(int xla) { | |
| 6741 |
1
1. jj_2_2 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6742 |
2
1. jj_2_2 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_2 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6743 | try { | |
| 6744 |
8
1. jj_2_2 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_2 → NO_COVERAGE 2. jj_2_2 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_2 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_2 : negated conditional → NO_COVERAGE 5. jj_2_2 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_2 → NO_COVERAGE 6. jj_2_2 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_2 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_2(); |
| 6745 | } catch (LookaheadSuccess ls) { | |
| 6746 |
3
1. jj_2_2 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_2 → NO_COVERAGE 2. jj_2_2 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6747 | } | |
| 6748 | } | |
| 6749 | ||
| 6750 | final private boolean jj_2_3(int xla) { | |
| 6751 |
1
1. jj_2_3 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6752 |
2
1. jj_2_3 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_3 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6753 | try { | |
| 6754 |
8
1. jj_2_3 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_3 → NO_COVERAGE 2. jj_2_3 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_3 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_3 : negated conditional → NO_COVERAGE 5. jj_2_3 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_3 → NO_COVERAGE 6. jj_2_3 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_3 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_3(); |
| 6755 | } catch (LookaheadSuccess ls) { | |
| 6756 |
3
1. jj_2_3 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_3 → NO_COVERAGE 2. jj_2_3 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6757 | } | |
| 6758 | } | |
| 6759 | ||
| 6760 | final private boolean jj_2_4(int xla) { | |
| 6761 |
1
1. jj_2_4 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6762 |
2
1. jj_2_4 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_4 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6763 | try { | |
| 6764 |
8
1. jj_2_4 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_4 → NO_COVERAGE 2. jj_2_4 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_4 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_4 : negated conditional → NO_COVERAGE 5. jj_2_4 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_4 → NO_COVERAGE 6. jj_2_4 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_4 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_4(); |
| 6765 | } catch (LookaheadSuccess ls) { | |
| 6766 |
3
1. jj_2_4 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_4 → NO_COVERAGE 2. jj_2_4 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6767 | } | |
| 6768 | } | |
| 6769 | ||
| 6770 | final private boolean jj_2_5(int xla) { | |
| 6771 |
1
1. jj_2_5 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6772 |
2
1. jj_2_5 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_5 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6773 | try { | |
| 6774 |
8
1. jj_2_5 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_5 → NO_COVERAGE 2. jj_2_5 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_5 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_5 : negated conditional → NO_COVERAGE 5. jj_2_5 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_5 → NO_COVERAGE 6. jj_2_5 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_5 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_5(); |
| 6775 | } catch (LookaheadSuccess ls) { | |
| 6776 |
3
1. jj_2_5 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_5 → NO_COVERAGE 2. jj_2_5 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6777 | } | |
| 6778 | } | |
| 6779 | ||
| 6780 | final private boolean jj_2_6(int xla) { | |
| 6781 |
1
1. jj_2_6 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6782 |
2
1. jj_2_6 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_6 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6783 | try { | |
| 6784 |
8
1. jj_2_6 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_6 → NO_COVERAGE 2. jj_2_6 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_6 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_6 : negated conditional → NO_COVERAGE 5. jj_2_6 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_6 → NO_COVERAGE 6. jj_2_6 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_6 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_6(); |
| 6785 | } catch (LookaheadSuccess ls) { | |
| 6786 |
3
1. jj_2_6 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_6 → NO_COVERAGE 2. jj_2_6 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6787 | } | |
| 6788 | } | |
| 6789 | ||
| 6790 | final private boolean jj_2_7(int xla) { | |
| 6791 |
1
1. jj_2_7 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6792 |
2
1. jj_2_7 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_7 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6793 | try { | |
| 6794 |
8
1. jj_2_7 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_7 → NO_COVERAGE 2. jj_2_7 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_7 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_7 : negated conditional → NO_COVERAGE 5. jj_2_7 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_7 → NO_COVERAGE 6. jj_2_7 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_7 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_7(); |
| 6795 | } catch (LookaheadSuccess ls) { | |
| 6796 |
3
1. jj_2_7 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_7 → NO_COVERAGE 2. jj_2_7 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6797 | } | |
| 6798 | } | |
| 6799 | ||
| 6800 | final private boolean jj_2_8(int xla) { | |
| 6801 |
1
1. jj_2_8 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6802 |
2
1. jj_2_8 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_8 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6803 | try { | |
| 6804 |
8
1. jj_2_8 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_8 → SURVIVED 2. jj_2_8 : Substituted 1 with 0 → SURVIVED 3. jj_2_8 : Substituted 0 with 1 → SURVIVED 4. jj_2_8 : negated conditional → SURVIVED 5. jj_2_8 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_8 → SURVIVED 6. jj_2_8 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_8 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_8(); |
| 6805 | } catch (LookaheadSuccess ls) { | |
| 6806 |
3
1. jj_2_8 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_8 → NO_COVERAGE 2. jj_2_8 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6807 | } | |
| 6808 | } | |
| 6809 | ||
| 6810 | final private boolean jj_2_9(int xla) { | |
| 6811 |
1
1. jj_2_9 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6812 |
2
1. jj_2_9 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_9 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6813 | try { | |
| 6814 |
8
1. jj_2_9 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_9 → SURVIVED 2. jj_2_9 : Substituted 1 with 0 → SURVIVED 3. jj_2_9 : Substituted 0 with 1 → SURVIVED 4. jj_2_9 : negated conditional → SURVIVED 5. jj_2_9 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_9 → SURVIVED 6. jj_2_9 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_9 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_9(); |
| 6815 | } catch (LookaheadSuccess ls) { | |
| 6816 |
3
1. jj_2_9 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_9 → NO_COVERAGE 2. jj_2_9 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6817 | } | |
| 6818 | } | |
| 6819 | ||
| 6820 | final private boolean jj_2_10(int xla) { | |
| 6821 |
1
1. jj_2_10 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6822 |
2
1. jj_2_10 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_10 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6823 | try { | |
| 6824 |
8
1. jj_2_10 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_10 → NO_COVERAGE 2. jj_2_10 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_10 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_10 : negated conditional → NO_COVERAGE 5. jj_2_10 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_10 → NO_COVERAGE 6. jj_2_10 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_10 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_10(); |
| 6825 | } catch (LookaheadSuccess ls) { | |
| 6826 |
3
1. jj_2_10 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_10 → NO_COVERAGE 2. jj_2_10 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6827 | } | |
| 6828 | } | |
| 6829 | ||
| 6830 | final private boolean jj_2_11(int xla) { | |
| 6831 |
1
1. jj_2_11 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6832 |
2
1. jj_2_11 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_11 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6833 | try { | |
| 6834 |
8
1. jj_2_11 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_11 → SURVIVED 2. jj_2_11 : Substituted 1 with 0 → SURVIVED 3. jj_2_11 : Substituted 0 with 1 → SURVIVED 4. jj_2_11 : negated conditional → SURVIVED 5. jj_2_11 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_11 → SURVIVED 6. jj_2_11 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_11 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_11(); |
| 6835 | } catch (LookaheadSuccess ls) { | |
| 6836 |
3
1. jj_2_11 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_11 → NO_COVERAGE 2. jj_2_11 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6837 | } | |
| 6838 | } | |
| 6839 | ||
| 6840 | final private boolean jj_2_12(int xla) { | |
| 6841 |
1
1. jj_2_12 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6842 |
2
1. jj_2_12 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_12 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6843 | try { | |
| 6844 |
8
1. jj_2_12 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_12 → SURVIVED 2. jj_2_12 : Substituted 1 with 0 → SURVIVED 3. jj_2_12 : Substituted 0 with 1 → SURVIVED 4. jj_2_12 : negated conditional → SURVIVED 5. jj_2_12 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_12 → SURVIVED 6. jj_2_12 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_12 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_12(); |
| 6845 | } catch (LookaheadSuccess ls) { | |
| 6846 |
3
1. jj_2_12 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_12 → NO_COVERAGE 2. jj_2_12 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6847 | } | |
| 6848 | } | |
| 6849 | ||
| 6850 | final private boolean jj_2_13(int xla) { | |
| 6851 |
1
1. jj_2_13 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6852 |
2
1. jj_2_13 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_13 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6853 | try { | |
| 6854 |
8
1. jj_2_13 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_13 → SURVIVED 2. jj_2_13 : Substituted 1 with 0 → SURVIVED 3. jj_2_13 : Substituted 0 with 1 → SURVIVED 4. jj_2_13 : negated conditional → SURVIVED 5. jj_2_13 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_13 → SURVIVED 6. jj_2_13 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_13 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_13(); |
| 6855 | } catch (LookaheadSuccess ls) { | |
| 6856 |
3
1. jj_2_13 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_13 → NO_COVERAGE 2. jj_2_13 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6857 | } | |
| 6858 | } | |
| 6859 | ||
| 6860 | final private boolean jj_2_14(int xla) { | |
| 6861 |
1
1. jj_2_14 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6862 |
2
1. jj_2_14 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_14 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6863 | try { | |
| 6864 |
8
1. jj_2_14 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_14 → NO_COVERAGE 2. jj_2_14 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_14 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_14 : negated conditional → NO_COVERAGE 5. jj_2_14 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_14 → NO_COVERAGE 6. jj_2_14 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_14 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_14(); |
| 6865 | } catch (LookaheadSuccess ls) { | |
| 6866 |
3
1. jj_2_14 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_14 → NO_COVERAGE 2. jj_2_14 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6867 | } | |
| 6868 | } | |
| 6869 | ||
| 6870 | final private boolean jj_2_15(int xla) { | |
| 6871 |
1
1. jj_2_15 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6872 |
2
1. jj_2_15 : Removed assignment to member variable jj_lastpos → SURVIVED 2. jj_2_15 : Removed assignment to member variable jj_scanpos → KILLED |
jj_lastpos = jj_scanpos = token; |
| 6873 | try { | |
| 6874 |
8
1. jj_2_15 : Substituted 1 with 0 → SURVIVED 2. jj_2_15 : removed conditional - replaced equality check with false → SURVIVED 3. jj_2_15 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_15 → KILLED 4. jj_2_15 : Substituted 0 with 1 → KILLED 5. jj_2_15 : negated conditional → KILLED 6. jj_2_15 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_15 → KILLED 7. jj_2_15 : removed conditional - replaced equality check with true → KILLED 8. jj_2_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return!jj_3_15(); |
| 6875 | } catch (LookaheadSuccess ls) { | |
| 6876 |
3
1. jj_2_15 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_15 → SURVIVED 2. jj_2_15 : Substituted 1 with 0 → SURVIVED 3. jj_2_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 6877 | } | |
| 6878 | } | |
| 6879 | ||
| 6880 | final private boolean jj_2_16(int xla) { | |
| 6881 |
1
1. jj_2_16 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6882 |
2
1. jj_2_16 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_16 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6883 | try { | |
| 6884 |
8
1. jj_2_16 : Substituted 1 with 0 → SURVIVED 2. jj_2_16 : removed conditional - replaced equality check with false → SURVIVED 3. jj_2_16 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_16 → KILLED 4. jj_2_16 : Substituted 0 with 1 → KILLED 5. jj_2_16 : negated conditional → KILLED 6. jj_2_16 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_16 → KILLED 7. jj_2_16 : removed conditional - replaced equality check with true → KILLED 8. jj_2_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return!jj_3_16(); |
| 6885 | } catch (LookaheadSuccess ls) { | |
| 6886 |
3
1. jj_2_16 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_16 → NO_COVERAGE 2. jj_2_16 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6887 | } | |
| 6888 | } | |
| 6889 | ||
| 6890 | final private boolean jj_2_17(int xla) { | |
| 6891 |
1
1. jj_2_17 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6892 |
2
1. jj_2_17 : Removed assignment to member variable jj_lastpos → SURVIVED 2. jj_2_17 : Removed assignment to member variable jj_scanpos → KILLED |
jj_lastpos = jj_scanpos = token; |
| 6893 | try { | |
| 6894 |
8
1. jj_2_17 : Substituted 1 with 0 → SURVIVED 2. jj_2_17 : removed conditional - replaced equality check with false → SURVIVED 3. jj_2_17 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_17 → KILLED 4. jj_2_17 : Substituted 0 with 1 → KILLED 5. jj_2_17 : negated conditional → KILLED 6. jj_2_17 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_17 → KILLED 7. jj_2_17 : removed conditional - replaced equality check with true → KILLED 8. jj_2_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return!jj_3_17(); |
| 6895 | } catch (LookaheadSuccess ls) { | |
| 6896 |
3
1. jj_2_17 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_17 → NO_COVERAGE 2. jj_2_17 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6897 | } | |
| 6898 | } | |
| 6899 | ||
| 6900 | final private boolean jj_2_18(int xla) { | |
| 6901 |
1
1. jj_2_18 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6902 |
2
1. jj_2_18 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_18 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6903 | try { | |
| 6904 |
8
1. jj_2_18 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_18 → NO_COVERAGE 2. jj_2_18 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_18 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_18 : negated conditional → NO_COVERAGE 5. jj_2_18 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_18 → NO_COVERAGE 6. jj_2_18 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_18 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_18(); |
| 6905 | } catch (LookaheadSuccess ls) { | |
| 6906 |
3
1. jj_2_18 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_18 → NO_COVERAGE 2. jj_2_18 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6907 | } | |
| 6908 | } | |
| 6909 | ||
| 6910 | final private boolean jj_2_19(int xla) { | |
| 6911 |
1
1. jj_2_19 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 6912 |
2
1. jj_2_19 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_19 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 6913 | try { | |
| 6914 |
8
1. jj_2_19 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_19 → NO_COVERAGE 2. jj_2_19 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_19 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_19 : negated conditional → NO_COVERAGE 5. jj_2_19 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_19 → NO_COVERAGE 6. jj_2_19 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_19 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_19(); |
| 6915 | } catch (LookaheadSuccess ls) { | |
| 6916 |
3
1. jj_2_19 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_19 → NO_COVERAGE 2. jj_2_19 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6917 | } | |
| 6918 | } | |
| 6919 | ||
| 6920 | final private boolean jj_2_20(int xla) { | |
| 6921 |
1
1. jj_2_20 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6922 |
2
1. jj_2_20 : Removed assignment to member variable jj_lastpos → SURVIVED 2. jj_2_20 : Removed assignment to member variable jj_scanpos → KILLED |
jj_lastpos = jj_scanpos = token; |
| 6923 | try { | |
| 6924 |
8
1. jj_2_20 : Substituted 1 with 0 → SURVIVED 2. jj_2_20 : removed conditional - replaced equality check with false → SURVIVED 3. jj_2_20 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_20 → KILLED 4. jj_2_20 : Substituted 0 with 1 → KILLED 5. jj_2_20 : negated conditional → KILLED 6. jj_2_20 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_20 → KILLED 7. jj_2_20 : removed conditional - replaced equality check with true → KILLED 8. jj_2_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return!jj_3_20(); |
| 6925 | } catch (LookaheadSuccess ls) { | |
| 6926 |
3
1. jj_2_20 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_20 → NO_COVERAGE 2. jj_2_20 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6927 | } | |
| 6928 | } | |
| 6929 | ||
| 6930 | final private boolean jj_2_21(int xla) { | |
| 6931 |
1
1. jj_2_21 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6932 |
2
1. jj_2_21 : Removed assignment to member variable jj_scanpos → KILLED 2. jj_2_21 : Removed assignment to member variable jj_lastpos → KILLED |
jj_lastpos = jj_scanpos = token; |
| 6933 | try { | |
| 6934 |
8
1. jj_2_21 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_21 → SURVIVED 2. jj_2_21 : Substituted 1 with 0 → SURVIVED 3. jj_2_21 : Substituted 0 with 1 → SURVIVED 4. jj_2_21 : negated conditional → SURVIVED 5. jj_2_21 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_21 → SURVIVED 6. jj_2_21 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_21 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_21(); |
| 6935 | } catch (LookaheadSuccess ls) { | |
| 6936 |
3
1. jj_2_21 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_21 → NO_COVERAGE 2. jj_2_21 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6937 | } | |
| 6938 | } | |
| 6939 | ||
| 6940 | final private boolean jj_2_22(int xla) { | |
| 6941 |
1
1. jj_2_22 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6942 |
2
1. jj_2_22 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_22 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6943 | try { | |
| 6944 |
8
1. jj_2_22 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_22 → SURVIVED 2. jj_2_22 : Substituted 1 with 0 → SURVIVED 3. jj_2_22 : Substituted 0 with 1 → SURVIVED 4. jj_2_22 : negated conditional → SURVIVED 5. jj_2_22 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_22 → SURVIVED 6. jj_2_22 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_22 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_22(); |
| 6945 | } catch (LookaheadSuccess ls) { | |
| 6946 |
3
1. jj_2_22 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_22 → NO_COVERAGE 2. jj_2_22 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6947 | } | |
| 6948 | } | |
| 6949 | ||
| 6950 | final private boolean jj_2_23(int xla) { | |
| 6951 |
1
1. jj_2_23 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6952 |
2
1. jj_2_23 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_23 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6953 | try { | |
| 6954 |
8
1. jj_2_23 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_23 → SURVIVED 2. jj_2_23 : Substituted 1 with 0 → SURVIVED 3. jj_2_23 : Substituted 0 with 1 → SURVIVED 4. jj_2_23 : negated conditional → SURVIVED 5. jj_2_23 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_23 → SURVIVED 6. jj_2_23 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_23 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_23(); |
| 6955 | } catch (LookaheadSuccess ls) { | |
| 6956 |
3
1. jj_2_23 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_23 → NO_COVERAGE 2. jj_2_23 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6957 | } | |
| 6958 | } | |
| 6959 | ||
| 6960 | final private boolean jj_2_24(int xla) { | |
| 6961 |
1
1. jj_2_24 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6962 |
2
1. jj_2_24 : Removed assignment to member variable jj_lastpos → SURVIVED 2. jj_2_24 : Removed assignment to member variable jj_scanpos → KILLED |
jj_lastpos = jj_scanpos = token; |
| 6963 | try { | |
| 6964 |
8
1. jj_2_24 : Substituted 1 with 0 → SURVIVED 2. jj_2_24 : removed conditional - replaced equality check with false → SURVIVED 3. jj_2_24 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_24 → KILLED 4. jj_2_24 : Substituted 0 with 1 → KILLED 5. jj_2_24 : negated conditional → KILLED 6. jj_2_24 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_24 → KILLED 7. jj_2_24 : removed conditional - replaced equality check with true → KILLED 8. jj_2_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return!jj_3_24(); |
| 6965 | } catch (LookaheadSuccess ls) { | |
| 6966 |
3
1. jj_2_24 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_24 → NO_COVERAGE 2. jj_2_24 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6967 | } | |
| 6968 | } | |
| 6969 | ||
| 6970 | final private boolean jj_2_25(int xla) { | |
| 6971 |
1
1. jj_2_25 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6972 |
2
1. jj_2_25 : Removed assignment to member variable jj_scanpos → KILLED 2. jj_2_25 : Removed assignment to member variable jj_lastpos → KILLED |
jj_lastpos = jj_scanpos = token; |
| 6973 | try { | |
| 6974 |
8
1. jj_2_25 : Substituted 1 with 0 → SURVIVED 2. jj_2_25 : removed conditional - replaced equality check with false → SURVIVED 3. jj_2_25 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_25 → KILLED 4. jj_2_25 : Substituted 0 with 1 → KILLED 5. jj_2_25 : negated conditional → KILLED 6. jj_2_25 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_25 → KILLED 7. jj_2_25 : removed conditional - replaced equality check with true → KILLED 8. jj_2_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return!jj_3_25(); |
| 6975 | } catch (LookaheadSuccess ls) { | |
| 6976 |
3
1. jj_2_25 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_25 → NO_COVERAGE 2. jj_2_25 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6977 | } | |
| 6978 | } | |
| 6979 | ||
| 6980 | final private boolean jj_2_26(int xla) { | |
| 6981 |
1
1. jj_2_26 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6982 |
2
1. jj_2_26 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_26 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6983 | try { | |
| 6984 |
8
1. jj_2_26 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_26 → SURVIVED 2. jj_2_26 : Substituted 1 with 0 → SURVIVED 3. jj_2_26 : Substituted 0 with 1 → SURVIVED 4. jj_2_26 : negated conditional → SURVIVED 5. jj_2_26 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_26 → SURVIVED 6. jj_2_26 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_26 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_26(); |
| 6985 | } catch (LookaheadSuccess ls) { | |
| 6986 |
3
1. jj_2_26 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_26 → NO_COVERAGE 2. jj_2_26 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6987 | } | |
| 6988 | } | |
| 6989 | ||
| 6990 | final private boolean jj_2_27(int xla) { | |
| 6991 |
1
1. jj_2_27 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 6992 |
2
1. jj_2_27 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_27 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 6993 | try { | |
| 6994 |
8
1. jj_2_27 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_27 → SURVIVED 2. jj_2_27 : Substituted 1 with 0 → SURVIVED 3. jj_2_27 : Substituted 0 with 1 → SURVIVED 4. jj_2_27 : negated conditional → SURVIVED 5. jj_2_27 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_27 → SURVIVED 6. jj_2_27 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_27 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_27(); |
| 6995 | } catch (LookaheadSuccess ls) { | |
| 6996 |
3
1. jj_2_27 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_27 → NO_COVERAGE 2. jj_2_27 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 6997 | } | |
| 6998 | } | |
| 6999 | ||
| 7000 | final private boolean jj_2_28(int xla) { | |
| 7001 |
1
1. jj_2_28 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 7002 |
2
1. jj_2_28 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_28 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 7003 | try { | |
| 7004 |
8
1. jj_2_28 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_28 → SURVIVED 2. jj_2_28 : Substituted 1 with 0 → SURVIVED 3. jj_2_28 : Substituted 0 with 1 → SURVIVED 4. jj_2_28 : negated conditional → SURVIVED 5. jj_2_28 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_28 → SURVIVED 6. jj_2_28 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_28 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_28(); |
| 7005 | } catch (LookaheadSuccess ls) { | |
| 7006 |
3
1. jj_2_28 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_28 → NO_COVERAGE 2. jj_2_28 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7007 | } | |
| 7008 | } | |
| 7009 | ||
| 7010 | final private boolean jj_2_29(int xla) { | |
| 7011 |
1
1. jj_2_29 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 7012 |
2
1. jj_2_29 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_29 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 7013 | try { | |
| 7014 |
8
1. jj_2_29 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_29 → SURVIVED 2. jj_2_29 : Substituted 1 with 0 → SURVIVED 3. jj_2_29 : Substituted 0 with 1 → SURVIVED 4. jj_2_29 : negated conditional → SURVIVED 5. jj_2_29 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_29 → SURVIVED 6. jj_2_29 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_29 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_29(); |
| 7015 | } catch (LookaheadSuccess ls) { | |
| 7016 |
3
1. jj_2_29 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_29 → NO_COVERAGE 2. jj_2_29 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7017 | } | |
| 7018 | } | |
| 7019 | ||
| 7020 | final private boolean jj_2_30(int xla) { | |
| 7021 |
1
1. jj_2_30 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7022 |
2
1. jj_2_30 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_30 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7023 | try { | |
| 7024 |
8
1. jj_2_30 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_30 → NO_COVERAGE 2. jj_2_30 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_30 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_30 : negated conditional → NO_COVERAGE 5. jj_2_30 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_30 → NO_COVERAGE 6. jj_2_30 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_30 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_30(); |
| 7025 | } catch (LookaheadSuccess ls) { | |
| 7026 |
3
1. jj_2_30 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_30 → NO_COVERAGE 2. jj_2_30 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7027 | } | |
| 7028 | } | |
| 7029 | ||
| 7030 | final private boolean jj_2_31(int xla) { | |
| 7031 |
1
1. jj_2_31 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7032 |
2
1. jj_2_31 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_31 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7033 | try { | |
| 7034 |
8
1. jj_2_31 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_31 → NO_COVERAGE 2. jj_2_31 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_31 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_31 : negated conditional → NO_COVERAGE 5. jj_2_31 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_31 → NO_COVERAGE 6. jj_2_31 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_31 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_31(); |
| 7035 | } catch (LookaheadSuccess ls) { | |
| 7036 |
3
1. jj_2_31 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_31 → NO_COVERAGE 2. jj_2_31 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7037 | } | |
| 7038 | } | |
| 7039 | ||
| 7040 | final private boolean jj_2_32(int xla) { | |
| 7041 |
1
1. jj_2_32 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 7042 |
2
1. jj_2_32 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_32 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 7043 | try { | |
| 7044 |
8
1. jj_2_32 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_32 → SURVIVED 2. jj_2_32 : Substituted 1 with 0 → SURVIVED 3. jj_2_32 : Substituted 0 with 1 → SURVIVED 4. jj_2_32 : negated conditional → SURVIVED 5. jj_2_32 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_32 → SURVIVED 6. jj_2_32 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_32 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_32(); |
| 7045 | } catch (LookaheadSuccess ls) { | |
| 7046 |
3
1. jj_2_32 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_32 → NO_COVERAGE 2. jj_2_32 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7047 | } | |
| 7048 | } | |
| 7049 | ||
| 7050 | final private boolean jj_2_33(int xla) { | |
| 7051 |
1
1. jj_2_33 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 7052 |
2
1. jj_2_33 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_33 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 7053 | try { | |
| 7054 |
8
1. jj_2_33 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_33 → SURVIVED 2. jj_2_33 : Substituted 1 with 0 → SURVIVED 3. jj_2_33 : Substituted 0 with 1 → SURVIVED 4. jj_2_33 : negated conditional → SURVIVED 5. jj_2_33 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_33 → SURVIVED 6. jj_2_33 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_33 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_33(); |
| 7055 | } catch (LookaheadSuccess ls) { | |
| 7056 |
3
1. jj_2_33 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_33 → NO_COVERAGE 2. jj_2_33 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7057 | } | |
| 7058 | } | |
| 7059 | ||
| 7060 | final private boolean jj_2_34(int xla) { | |
| 7061 |
1
1. jj_2_34 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7062 |
2
1. jj_2_34 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_34 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7063 | try { | |
| 7064 |
8
1. jj_2_34 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_34 → NO_COVERAGE 2. jj_2_34 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_34 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_34 : negated conditional → NO_COVERAGE 5. jj_2_34 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_34 → NO_COVERAGE 6. jj_2_34 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_34 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_34(); |
| 7065 | } catch (LookaheadSuccess ls) { | |
| 7066 |
3
1. jj_2_34 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_34 → NO_COVERAGE 2. jj_2_34 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7067 | } | |
| 7068 | } | |
| 7069 | ||
| 7070 | final private boolean jj_2_35(int xla) { | |
| 7071 |
1
1. jj_2_35 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7072 |
2
1. jj_2_35 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_35 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7073 | try { | |
| 7074 |
8
1. jj_2_35 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_35 → NO_COVERAGE 2. jj_2_35 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_35 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_35 : negated conditional → NO_COVERAGE 5. jj_2_35 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_35 → NO_COVERAGE 6. jj_2_35 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_35 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_35(); |
| 7075 | } catch (LookaheadSuccess ls) { | |
| 7076 |
3
1. jj_2_35 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_35 → NO_COVERAGE 2. jj_2_35 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7077 | } | |
| 7078 | } | |
| 7079 | ||
| 7080 | final private boolean jj_2_36(int xla) { | |
| 7081 |
1
1. jj_2_36 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7082 |
2
1. jj_2_36 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_36 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7083 | try { | |
| 7084 |
8
1. jj_2_36 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_36 → NO_COVERAGE 2. jj_2_36 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_36 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_36 : negated conditional → NO_COVERAGE 5. jj_2_36 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_36 → NO_COVERAGE 6. jj_2_36 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_36 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_36(); |
| 7085 | } catch (LookaheadSuccess ls) { | |
| 7086 |
3
1. jj_2_36 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_36 → NO_COVERAGE 2. jj_2_36 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7087 | } | |
| 7088 | } | |
| 7089 | ||
| 7090 | final private boolean jj_2_37(int xla) { | |
| 7091 |
1
1. jj_2_37 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7092 |
2
1. jj_2_37 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_37 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7093 | try { | |
| 7094 |
8
1. jj_2_37 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_37 → NO_COVERAGE 2. jj_2_37 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_37 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_37 : negated conditional → NO_COVERAGE 5. jj_2_37 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_37 → NO_COVERAGE 6. jj_2_37 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_37 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_37(); |
| 7095 | } catch (LookaheadSuccess ls) { | |
| 7096 |
3
1. jj_2_37 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_37 → NO_COVERAGE 2. jj_2_37 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7097 | } | |
| 7098 | } | |
| 7099 | ||
| 7100 | final private boolean jj_2_38(int xla) { | |
| 7101 |
1
1. jj_2_38 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7102 |
2
1. jj_2_38 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_38 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7103 | try { | |
| 7104 |
8
1. jj_2_38 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_38 → NO_COVERAGE 2. jj_2_38 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_38 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_38 : negated conditional → NO_COVERAGE 5. jj_2_38 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_38 → NO_COVERAGE 6. jj_2_38 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_38 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_38(); |
| 7105 | } catch (LookaheadSuccess ls) { | |
| 7106 |
3
1. jj_2_38 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_38 → NO_COVERAGE 2. jj_2_38 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7107 | } | |
| 7108 | } | |
| 7109 | ||
| 7110 | final private boolean jj_2_39(int xla) { | |
| 7111 |
1
1. jj_2_39 : Removed assignment to member variable jj_la → NO_COVERAGE |
jj_la = xla; |
| 7112 |
2
1. jj_2_39 : Removed assignment to member variable jj_scanpos → NO_COVERAGE 2. jj_2_39 : Removed assignment to member variable jj_lastpos → NO_COVERAGE |
jj_lastpos = jj_scanpos = token; |
| 7113 | try { | |
| 7114 |
8
1. jj_2_39 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_39 → NO_COVERAGE 2. jj_2_39 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_39 : Substituted 0 with 1 → NO_COVERAGE 4. jj_2_39 : negated conditional → NO_COVERAGE 5. jj_2_39 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_39 → NO_COVERAGE 6. jj_2_39 : removed conditional - replaced equality check with false → NO_COVERAGE 7. jj_2_39 : removed conditional - replaced equality check with true → NO_COVERAGE 8. jj_2_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return!jj_3_39(); |
| 7115 | } catch (LookaheadSuccess ls) { | |
| 7116 |
3
1. jj_2_39 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_39 → NO_COVERAGE 2. jj_2_39 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7117 | } | |
| 7118 | } | |
| 7119 | ||
| 7120 | final private boolean jj_2_40(int xla) { | |
| 7121 |
1
1. jj_2_40 : Removed assignment to member variable jj_la → SURVIVED |
jj_la = xla; |
| 7122 |
2
1. jj_2_40 : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_2_40 : Removed assignment to member variable jj_lastpos → SURVIVED |
jj_lastpos = jj_scanpos = token; |
| 7123 | try { | |
| 7124 |
8
1. jj_2_40 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_40 → SURVIVED 2. jj_2_40 : Substituted 1 with 0 → SURVIVED 3. jj_2_40 : Substituted 0 with 1 → SURVIVED 4. jj_2_40 : negated conditional → SURVIVED 5. jj_2_40 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_40 → SURVIVED 6. jj_2_40 : removed conditional - replaced equality check with false → SURVIVED 7. jj_2_40 : removed conditional - replaced equality check with true → SURVIVED 8. jj_2_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return!jj_3_40(); |
| 7125 | } catch (LookaheadSuccess ls) { | |
| 7126 |
3
1. jj_2_40 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_2_40 → NO_COVERAGE 2. jj_2_40 : Substituted 1 with 0 → NO_COVERAGE 3. jj_2_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7127 | } | |
| 7128 | } | |
| 7129 | ||
| 7130 | final private boolean jj_3R_94() { | |
| 7131 |
4
1. jj_3R_94 : negated conditional → SURVIVED 2. jj_3R_94 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → SURVIVED 3. jj_3R_94 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_94 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_123()) { |
| 7132 |
3
1. jj_3R_94 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_94 → SURVIVED 2. jj_3R_94 : Substituted 1 with 0 → SURVIVED 3. jj_3R_94 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7133 | } | |
| 7134 | Token xsp; | |
| 7135 | while (true) { | |
| 7136 | xsp = jj_scanpos; | |
| 7137 |
4
1. jj_3R_94 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_94 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_11 → TIMED_OUT 3. jj_3R_94 : negated conditional → KILLED 4. jj_3R_94 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_11()) { |
| 7138 |
1
1. jj_3R_94 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 7139 | break; | |
| 7140 | } | |
| 7141 | } | |
| 7142 |
3
1. jj_3R_94 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_94 → SURVIVED 2. jj_3R_94 : Substituted 0 with 1 → SURVIVED 3. jj_3R_94 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 7143 | } | |
| 7144 | ||
| 7145 | final private boolean jj_3R_93() { | |
| 7146 |
4
1. jj_3R_93 : negated conditional → SURVIVED 2. jj_3R_93 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_74 → SURVIVED 3. jj_3R_93 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_93 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_74()) { |
| 7147 |
3
1. jj_3R_93 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_93 → SURVIVED 2. jj_3R_93 : Substituted 1 with 0 → SURVIVED 3. jj_3R_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7148 | } | |
| 7149 | Token xsp; | |
| 7150 |
4
1. jj_3R_93 : negated conditional → NO_COVERAGE 2. jj_3R_93 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_10 → NO_COVERAGE 3. jj_3R_93 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_93 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_10()) { |
| 7151 |
3
1. jj_3R_93 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_93 → NO_COVERAGE 2. jj_3R_93 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7152 | } while (true) { | |
| 7153 | xsp = jj_scanpos; | |
| 7154 |
4
1. jj_3R_93 : negated conditional → NO_COVERAGE 2. jj_3R_93 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_10 → NO_COVERAGE 3. jj_3R_93 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_93 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_10()) { |
| 7155 |
1
1. jj_3R_93 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7156 | break; | |
| 7157 | } | |
| 7158 | } | |
| 7159 |
3
1. jj_3R_93 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_93 → NO_COVERAGE 2. jj_3R_93 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7160 | } | |
| 7161 | ||
| 7162 | final private boolean jj_3R_67() { | |
| 7163 | Token xsp; | |
| 7164 | xsp = jj_scanpos; | |
| 7165 |
4
1. jj_3R_67 : negated conditional → SURVIVED 2. jj_3R_67 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_93 → SURVIVED 3. jj_3R_67 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_67 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_93()) { |
| 7166 |
1
1. jj_3R_67 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 7167 |
4
1. jj_3R_67 : negated conditional → SURVIVED 2. jj_3R_67 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_94 → SURVIVED 3. jj_3R_67 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_67 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_94()) { |
| 7168 |
3
1. jj_3R_67 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_67 → SURVIVED 2. jj_3R_67 : Substituted 1 with 0 → SURVIVED 3. jj_3R_67 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7169 | } | |
| 7170 | } | |
| 7171 |
3
1. jj_3R_67 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_67 → SURVIVED 2. jj_3R_67 : Substituted 0 with 1 → SURVIVED 3. jj_3R_67 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 7172 | } | |
| 7173 | ||
| 7174 | final private boolean jj_3R_243() { | |
| 7175 |
5
1. jj_3R_243 : Substituted 59 with 60 → NO_COVERAGE 2. jj_3R_243 : negated conditional → NO_COVERAGE 3. jj_3R_243 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_243 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_243 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(THROWS)) { |
| 7176 |
3
1. jj_3R_243 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_243 → NO_COVERAGE 2. jj_3R_243 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_243 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7177 | } | |
| 7178 |
4
1. jj_3R_243 : negated conditional → NO_COVERAGE 2. jj_3R_243 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_262 → NO_COVERAGE 3. jj_3R_243 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_243 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_262()) { |
| 7179 |
3
1. jj_3R_243 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_243 → NO_COVERAGE 2. jj_3R_243 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_243 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7180 | } | |
| 7181 |
3
1. jj_3R_243 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_243 → NO_COVERAGE 2. jj_3R_243 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_243 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7182 | } | |
| 7183 | ||
| 7184 | final private boolean jj_3R_85() { | |
| 7185 |
4
1. jj_3R_85 : negated conditional → SURVIVED 2. jj_3R_85 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_74 → SURVIVED 3. jj_3R_85 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_85 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_74()) { |
| 7186 |
3
1. jj_3R_85 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_85 → SURVIVED 2. jj_3R_85 : Substituted 1 with 0 → SURVIVED 3. jj_3R_85 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7187 | } | |
| 7188 |
3
1. jj_3R_85 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_85 → NO_COVERAGE 2. jj_3R_85 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_85 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7189 | } | |
| 7190 | ||
| 7191 | final private boolean jj_3_9() { | |
| 7192 |
4
1. jj_3_9 : negated conditional → SURVIVED 2. jj_3_9 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_67 → SURVIVED 3. jj_3_9 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_9 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_67()) { |
| 7193 |
3
1. jj_3_9 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_9 → SURVIVED 2. jj_3_9 : Substituted 1 with 0 → SURVIVED 3. jj_3_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7194 | } | |
| 7195 |
3
1. jj_3_9 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_9 → SURVIVED 2. jj_3_9 : Substituted 0 with 1 → SURVIVED 3. jj_3_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 7196 | } | |
| 7197 | ||
| 7198 | final private boolean jj_3R_60() { | |
| 7199 | Token xsp; | |
| 7200 | xsp = jj_scanpos; | |
| 7201 |
4
1. jj_3R_60 : negated conditional → SURVIVED 2. jj_3R_60 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_9 → SURVIVED 3. jj_3R_60 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_60 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3_9()) { |
| 7202 |
1
1. jj_3R_60 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 7203 |
4
1. jj_3R_60 : negated conditional → SURVIVED 2. jj_3R_60 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_85 → SURVIVED 3. jj_3R_60 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_60 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_85()) { |
| 7204 |
3
1. jj_3R_60 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → SURVIVED 2. jj_3R_60 : Substituted 1 with 0 → SURVIVED 3. jj_3R_60 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7205 | } | |
| 7206 | } | |
| 7207 |
3
1. jj_3R_60 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → SURVIVED 2. jj_3R_60 : Substituted 0 with 1 → SURVIVED 3. jj_3R_60 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 7208 | } | |
| 7209 | ||
| 7210 | final private boolean jj_3_8() { | |
| 7211 |
5
1. jj_3_8 : Substituted 57 with 58 → SURVIVED 2. jj_3_8 : negated conditional → SURVIVED 3. jj_3_8 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_8 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_8 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(THIS)) { |
| 7212 |
3
1. jj_3_8 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_8 → SURVIVED 2. jj_3_8 : Substituted 1 with 0 → SURVIVED 3. jj_3_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7213 | } | |
| 7214 |
4
1. jj_3_8 : negated conditional → NO_COVERAGE 2. jj_3_8 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → NO_COVERAGE 3. jj_3_8 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_8 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_66()) { |
| 7215 |
3
1. jj_3_8 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_8 → NO_COVERAGE 2. jj_3_8 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7216 | } | |
| 7217 |
5
1. jj_3_8 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3_8 : negated conditional → NO_COVERAGE 3. jj_3_8 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_8 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_8 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 7218 |
3
1. jj_3_8 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_8 → NO_COVERAGE 2. jj_3_8 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7219 | } | |
| 7220 |
3
1. jj_3_8 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_8 → NO_COVERAGE 2. jj_3_8 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7221 | } | |
| 7222 | ||
| 7223 | final private boolean jj_3R_62() { | |
| 7224 | Token xsp; | |
| 7225 | xsp = jj_scanpos; | |
| 7226 |
5
1. jj_3R_62 : Substituted 52 with 53 → NO_COVERAGE 2. jj_3R_62 : negated conditional → NO_COVERAGE 3. jj_3R_62 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_62 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_62 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(52)) { |
| 7227 |
1
1. jj_3R_62 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7228 | } | |
| 7229 |
4
1. jj_3R_62 : negated conditional → NO_COVERAGE 2. jj_3R_62 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 3. jj_3R_62 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_62 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_86()) { |
| 7230 |
3
1. jj_3R_62 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_62 → NO_COVERAGE 2. jj_3R_62 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_62 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7231 | } | |
| 7232 |
3
1. jj_3R_62 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_62 → NO_COVERAGE 2. jj_3R_62 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_62 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7233 | } | |
| 7234 | ||
| 7235 | final private boolean jj_3_6() { | |
| 7236 |
4
1. jj_3_6 : negated conditional → NO_COVERAGE 2. jj_3_6 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_64 → NO_COVERAGE 3. jj_3_6 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_6 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_64()) { |
| 7237 |
3
1. jj_3_6 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_6 → NO_COVERAGE 2. jj_3_6 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7238 | } | |
| 7239 |
3
1. jj_3_6 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_6 → NO_COVERAGE 2. jj_3_6 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7240 | } | |
| 7241 | ||
| 7242 | final private boolean jj_3_7() { | |
| 7243 |
4
1. jj_3_7 : negated conditional → NO_COVERAGE 2. jj_3_7 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_65 → NO_COVERAGE 3. jj_3_7 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_7 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_65()) { |
| 7244 |
3
1. jj_3_7 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_7 → NO_COVERAGE 2. jj_3_7 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7245 | } | |
| 7246 |
5
1. jj_3_7 : Substituted 85 with 86 → NO_COVERAGE 2. jj_3_7 : negated conditional → NO_COVERAGE 3. jj_3_7 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_7 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_7 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(DOT)) { |
| 7247 |
3
1. jj_3_7 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_7 → NO_COVERAGE 2. jj_3_7 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7248 | } | |
| 7249 |
3
1. jj_3_7 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_7 → NO_COVERAGE 2. jj_3_7 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7250 | } | |
| 7251 | ||
| 7252 | final private boolean jj_3R_265() { | |
| 7253 |
5
1. jj_3R_265 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3R_265 : negated conditional → NO_COVERAGE 3. jj_3R_265 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_265 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_265 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 7254 |
3
1. jj_3R_265 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_265 → NO_COVERAGE 2. jj_3R_265 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_265 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7255 | } | |
| 7256 |
5
1. jj_3R_265 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3R_265 : negated conditional → NO_COVERAGE 3. jj_3R_265 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_265 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_265 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 7257 |
3
1. jj_3R_265 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_265 → NO_COVERAGE 2. jj_3R_265 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_265 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7258 | } | |
| 7259 |
3
1. jj_3R_265 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_265 → NO_COVERAGE 2. jj_3R_265 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_265 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7260 | } | |
| 7261 | ||
| 7262 | final private boolean jj_3R_90() { | |
| 7263 | Token xsp; | |
| 7264 | xsp = jj_scanpos; | |
| 7265 |
4
1. jj_3R_90 : negated conditional → NO_COVERAGE 2. jj_3R_90 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_7 → NO_COVERAGE 3. jj_3R_90 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_90 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_7()) { |
| 7266 |
1
1. jj_3R_90 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7267 | } | |
| 7268 |
5
1. jj_3R_90 : Substituted 54 with 55 → NO_COVERAGE 2. jj_3R_90 : negated conditional → NO_COVERAGE 3. jj_3R_90 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_90 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_90 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SUPER)) { |
| 7269 |
3
1. jj_3R_90 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_90 → NO_COVERAGE 2. jj_3R_90 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7270 | } | |
| 7271 |
4
1. jj_3R_90 : negated conditional → NO_COVERAGE 2. jj_3R_90 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → NO_COVERAGE 3. jj_3R_90 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_90 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_66()) { |
| 7272 |
3
1. jj_3R_90 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_90 → NO_COVERAGE 2. jj_3R_90 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7273 | } | |
| 7274 |
5
1. jj_3R_90 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_90 : negated conditional → NO_COVERAGE 3. jj_3R_90 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_90 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_90 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 7275 |
3
1. jj_3R_90 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_90 → NO_COVERAGE 2. jj_3R_90 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7276 | } | |
| 7277 |
3
1. jj_3R_90 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_90 → NO_COVERAGE 2. jj_3R_90 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7278 | } | |
| 7279 | ||
| 7280 | final private boolean jj_3R_274() { | |
| 7281 |
5
1. jj_3R_274 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_274 : negated conditional → NO_COVERAGE 3. jj_3R_274 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_274 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_274 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 7282 |
3
1. jj_3R_274 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_274 → NO_COVERAGE 2. jj_3R_274 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_274 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7283 | } | |
| 7284 |
4
1. jj_3R_274 : negated conditional → NO_COVERAGE 2. jj_3R_274 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_273 → NO_COVERAGE 3. jj_3R_274 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_274 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_273()) { |
| 7285 |
3
1. jj_3R_274 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_274 → NO_COVERAGE 2. jj_3R_274 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_274 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7286 | } | |
| 7287 |
3
1. jj_3R_274 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_274 → NO_COVERAGE 2. jj_3R_274 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_274 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7288 | } | |
| 7289 | ||
| 7290 | final private boolean jj_3R_89() { | |
| 7291 |
5
1. jj_3R_89 : Substituted 57 with 58 → NO_COVERAGE 2. jj_3R_89 : negated conditional → NO_COVERAGE 3. jj_3R_89 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_89 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_89 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(THIS)) { |
| 7292 |
3
1. jj_3R_89 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_89 → NO_COVERAGE 2. jj_3R_89 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7293 | } | |
| 7294 |
4
1. jj_3R_89 : negated conditional → NO_COVERAGE 2. jj_3R_89 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → NO_COVERAGE 3. jj_3R_89 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_89 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_66()) { |
| 7295 |
3
1. jj_3R_89 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_89 → NO_COVERAGE 2. jj_3R_89 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7296 | } | |
| 7297 |
5
1. jj_3R_89 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_89 : negated conditional → NO_COVERAGE 3. jj_3R_89 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_89 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_89 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 7298 |
3
1. jj_3R_89 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_89 → NO_COVERAGE 2. jj_3R_89 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7299 | } | |
| 7300 |
3
1. jj_3R_89 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_89 → NO_COVERAGE 2. jj_3R_89 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7301 | } | |
| 7302 | ||
| 7303 | final private boolean jj_3R_64() { | |
| 7304 | Token xsp; | |
| 7305 | xsp = jj_scanpos; | |
| 7306 |
4
1. jj_3R_64 : negated conditional → NO_COVERAGE 2. jj_3R_64 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_89 → NO_COVERAGE 3. jj_3R_64 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_64 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_89()) { |
| 7307 |
1
1. jj_3R_64 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7308 |
4
1. jj_3R_64 : negated conditional → NO_COVERAGE 2. jj_3R_64 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_90 → NO_COVERAGE 3. jj_3R_64 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_64 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_90()) { |
| 7309 |
3
1. jj_3R_64 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_64 → NO_COVERAGE 2. jj_3R_64 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_64 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7310 | } | |
| 7311 | } | |
| 7312 |
3
1. jj_3R_64 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_64 → NO_COVERAGE 2. jj_3R_64 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_64 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7313 | } | |
| 7314 | ||
| 7315 | final private boolean jj_3R_245() { | |
| 7316 |
4
1. jj_3R_245 : negated conditional → NO_COVERAGE 2. jj_3R_245 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_133 → NO_COVERAGE 3. jj_3R_245 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_245 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_133()) { |
| 7317 |
3
1. jj_3R_245 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_245 → NO_COVERAGE 2. jj_3R_245 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_245 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7318 | } | |
| 7319 |
3
1. jj_3R_245 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_245 → NO_COVERAGE 2. jj_3R_245 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_245 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7320 | } | |
| 7321 | ||
| 7322 | final private boolean jj_3R_244() { | |
| 7323 |
4
1. jj_3R_244 : negated conditional → NO_COVERAGE 2. jj_3R_244 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_64 → NO_COVERAGE 3. jj_3R_244 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_244 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_64()) { |
| 7324 |
3
1. jj_3R_244 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_244 → NO_COVERAGE 2. jj_3R_244 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_244 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7325 | } | |
| 7326 |
3
1. jj_3R_244 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_244 → NO_COVERAGE 2. jj_3R_244 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_244 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7327 | } | |
| 7328 | ||
| 7329 | final private boolean jj_3R_241() { | |
| 7330 |
4
1. jj_3R_241 : negated conditional → NO_COVERAGE 2. jj_3R_241 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 3. jj_3R_241 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_241 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_84()) { |
| 7331 |
3
1. jj_3R_241 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_241 → NO_COVERAGE 2. jj_3R_241 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_241 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7332 | } | |
| 7333 |
3
1. jj_3R_241 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_241 → NO_COVERAGE 2. jj_3R_241 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_241 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7334 | } | |
| 7335 | ||
| 7336 | final private boolean jj_3R_231() { | |
| 7337 | Token xsp; | |
| 7338 | xsp = jj_scanpos; | |
| 7339 |
4
1. jj_3R_231 : negated conditional → NO_COVERAGE 2. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_241 → NO_COVERAGE 3. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_241()) { |
| 7340 |
1
1. jj_3R_231 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7341 | } | |
| 7342 |
5
1. jj_3R_231 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_231 : negated conditional → NO_COVERAGE 3. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 7343 |
3
1. jj_3R_231 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_231 → NO_COVERAGE 2. jj_3R_231 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_231 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7344 | } | |
| 7345 |
4
1. jj_3R_231 : negated conditional → NO_COVERAGE 2. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_242 → NO_COVERAGE 3. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_242()) { |
| 7346 |
3
1. jj_3R_231 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_231 → NO_COVERAGE 2. jj_3R_231 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_231 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7347 | } | |
| 7348 | xsp = jj_scanpos; | |
| 7349 |
4
1. jj_3R_231 : negated conditional → NO_COVERAGE 2. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_243 → NO_COVERAGE 3. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_243()) { |
| 7350 |
1
1. jj_3R_231 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7351 | } | |
| 7352 |
5
1. jj_3R_231 : Substituted 79 with 80 → NO_COVERAGE 2. jj_3R_231 : negated conditional → NO_COVERAGE 3. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACE)) { |
| 7353 |
3
1. jj_3R_231 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_231 → NO_COVERAGE 2. jj_3R_231 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_231 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7354 | } | |
| 7355 | xsp = jj_scanpos; | |
| 7356 |
4
1. jj_3R_231 : negated conditional → NO_COVERAGE 2. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_244 → NO_COVERAGE 3. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_244()) { |
| 7357 |
1
1. jj_3R_231 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7358 | } while (true) { | |
| 7359 | xsp = jj_scanpos; | |
| 7360 |
4
1. jj_3R_231 : negated conditional → NO_COVERAGE 2. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_245 → NO_COVERAGE 3. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_245()) { |
| 7361 |
1
1. jj_3R_231 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7362 | break; | |
| 7363 | } | |
| 7364 | } | |
| 7365 |
5
1. jj_3R_231 : Substituted 80 with 81 → NO_COVERAGE 2. jj_3R_231 : negated conditional → NO_COVERAGE 3. jj_3R_231 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_231 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_231 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACE)) { |
| 7366 |
3
1. jj_3R_231 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_231 → NO_COVERAGE 2. jj_3R_231 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_231 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7367 | } | |
| 7368 |
3
1. jj_3R_231 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_231 → NO_COVERAGE 2. jj_3R_231 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_231 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7369 | } | |
| 7370 | ||
| 7371 | final private boolean jj_3_5() { | |
| 7372 |
5
1. jj_3_5 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3_5 : negated conditional → NO_COVERAGE 3. jj_3_5 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_5 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_5 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 7373 |
3
1. jj_3_5 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_5 → NO_COVERAGE 2. jj_3_5 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7374 | } | |
| 7375 |
4
1. jj_3_5 : negated conditional → NO_COVERAGE 2. jj_3_5 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_63 → NO_COVERAGE 3. jj_3_5 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_5 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_63()) { |
| 7376 |
3
1. jj_3_5 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_5 → NO_COVERAGE 2. jj_3_5 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7377 | } | |
| 7378 |
3
1. jj_3_5 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_5 → NO_COVERAGE 2. jj_3_5 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7379 | } | |
| 7380 | ||
| 7381 | final private boolean jj_3R_250() { | |
| 7382 |
5
1. jj_3R_250 : Substituted 59 with 60 → NO_COVERAGE 2. jj_3R_250 : negated conditional → NO_COVERAGE 3. jj_3R_250 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_250 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_250 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(THROWS)) { |
| 7383 |
3
1. jj_3R_250 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_250 → NO_COVERAGE 2. jj_3R_250 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_250 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7384 | } | |
| 7385 |
4
1. jj_3R_250 : negated conditional → NO_COVERAGE 2. jj_3R_250 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_262 → NO_COVERAGE 3. jj_3R_250 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_250 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_262()) { |
| 7386 |
3
1. jj_3R_250 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_250 → NO_COVERAGE 2. jj_3R_250 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_250 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7387 | } | |
| 7388 |
3
1. jj_3R_250 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_250 → NO_COVERAGE 2. jj_3R_250 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_250 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7389 | } | |
| 7390 | ||
| 7391 | final private boolean jj_3R_273() { | |
| 7392 | Token xsp; | |
| 7393 | xsp = jj_scanpos; | |
| 7394 |
5
1. jj_3R_273 : Substituted 31 with 32 → NO_COVERAGE 2. jj_3R_273 : negated conditional → NO_COVERAGE 3. jj_3R_273 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_273 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_273 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(31)) { |
| 7395 |
1
1. jj_3R_273 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7396 | } | |
| 7397 |
4
1. jj_3R_273 : negated conditional → NO_COVERAGE 2. jj_3R_273 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3R_273 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_273 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 7398 |
3
1. jj_3R_273 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_273 → NO_COVERAGE 2. jj_3R_273 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_273 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7399 | } | |
| 7400 | xsp = jj_scanpos; | |
| 7401 |
5
1. jj_3R_273 : Substituted 121 with 122 → NO_COVERAGE 2. jj_3R_273 : negated conditional → NO_COVERAGE 3. jj_3R_273 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_273 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_273 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(121)) { |
| 7402 |
1
1. jj_3R_273 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7403 | } | |
| 7404 |
4
1. jj_3R_273 : negated conditional → NO_COVERAGE 2. jj_3R_273 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_263 → NO_COVERAGE 3. jj_3R_273 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_273 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_263()) { |
| 7405 |
3
1. jj_3R_273 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_273 → NO_COVERAGE 2. jj_3R_273 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_273 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7406 | } | |
| 7407 |
3
1. jj_3R_273 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_273 → NO_COVERAGE 2. jj_3R_273 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_273 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7408 | } | |
| 7409 | ||
| 7410 | final private boolean jj_3R_261() { | |
| 7411 |
4
1. jj_3R_261 : negated conditional → NO_COVERAGE 2. jj_3R_261 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_273 → NO_COVERAGE 3. jj_3R_261 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_261 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_273()) { |
| 7412 |
3
1. jj_3R_261 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_261 → NO_COVERAGE 2. jj_3R_261 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_261 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7413 | } | |
| 7414 | Token xsp; | |
| 7415 | while (true) { | |
| 7416 | xsp = jj_scanpos; | |
| 7417 |
4
1. jj_3R_261 : negated conditional → NO_COVERAGE 2. jj_3R_261 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_274 → NO_COVERAGE 3. jj_3R_261 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_261 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_274()) { |
| 7418 |
1
1. jj_3R_261 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7419 | break; | |
| 7420 | } | |
| 7421 | } | |
| 7422 |
3
1. jj_3R_261 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_261 → NO_COVERAGE 2. jj_3R_261 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_261 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7423 | } | |
| 7424 | ||
| 7425 | final private boolean jj_3R_242() { | |
| 7426 |
5
1. jj_3R_242 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_242 : negated conditional → NO_COVERAGE 3. jj_3R_242 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_242 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_242 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 7427 |
3
1. jj_3R_242 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_242 → NO_COVERAGE 2. jj_3R_242 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_242 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7428 | } | |
| 7429 | Token xsp; | |
| 7430 | xsp = jj_scanpos; | |
| 7431 |
4
1. jj_3R_242 : negated conditional → NO_COVERAGE 2. jj_3R_242 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_261 → NO_COVERAGE 3. jj_3R_242 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_242 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_261()) { |
| 7432 |
1
1. jj_3R_242 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7433 | } | |
| 7434 |
5
1. jj_3R_242 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_242 : negated conditional → NO_COVERAGE 3. jj_3R_242 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_242 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_242 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 7435 |
3
1. jj_3R_242 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_242 → NO_COVERAGE 2. jj_3R_242 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_242 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7436 | } | |
| 7437 |
3
1. jj_3R_242 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_242 → NO_COVERAGE 2. jj_3R_242 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_242 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7438 | } | |
| 7439 | ||
| 7440 | final private boolean jj_3R_249() { | |
| 7441 |
5
1. jj_3R_249 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_249 : negated conditional → NO_COVERAGE 3. jj_3R_249 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_249 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_249 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 7442 |
3
1. jj_3R_249 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_249 → NO_COVERAGE 2. jj_3R_249 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_249 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7443 | } | |
| 7444 |
4
1. jj_3R_249 : negated conditional → NO_COVERAGE 2. jj_3R_249 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_242 → NO_COVERAGE 3. jj_3R_249 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_249 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_242()) { |
| 7445 |
3
1. jj_3R_249 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_249 → NO_COVERAGE 2. jj_3R_249 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_249 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7446 | } | |
| 7447 | Token xsp; | |
| 7448 | while (true) { | |
| 7449 | xsp = jj_scanpos; | |
| 7450 |
4
1. jj_3R_249 : negated conditional → NO_COVERAGE 2. jj_3R_249 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_265 → NO_COVERAGE 3. jj_3R_249 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_249 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_265()) { |
| 7451 |
1
1. jj_3R_249 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7452 | break; | |
| 7453 | } | |
| 7454 | } | |
| 7455 |
3
1. jj_3R_249 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_249 → NO_COVERAGE 2. jj_3R_249 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_249 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7456 | } | |
| 7457 | ||
| 7458 | final private boolean jj_3R_251() { | |
| 7459 |
4
1. jj_3R_251 : negated conditional → NO_COVERAGE 2. jj_3R_251 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 3. jj_3R_251 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_251 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_86()) { |
| 7460 |
3
1. jj_3R_251 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_251 → NO_COVERAGE 2. jj_3R_251 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_251 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7461 | } | |
| 7462 |
3
1. jj_3R_251 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_251 → NO_COVERAGE 2. jj_3R_251 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_251 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7463 | } | |
| 7464 | ||
| 7465 | final private boolean jj_3_40() { | |
| 7466 |
4
1. jj_3_40 : negated conditional → SURVIVED 2. jj_3_40 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → SURVIVED 3. jj_3_40 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_40 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_60()) { |
| 7467 |
3
1. jj_3_40 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_40 → NO_COVERAGE 2. jj_3_40 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7468 | } | |
| 7469 |
5
1. jj_3_40 : Substituted 74 with 75 → SURVIVED 2. jj_3_40 : negated conditional → SURVIVED 3. jj_3_40 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_40 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_40 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(IDENTIFIER)) { |
| 7470 |
3
1. jj_3_40 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_40 → NO_COVERAGE 2. jj_3_40 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7471 | } | |
| 7472 |
5
1. jj_3_40 : Substituted 77 with 78 → SURVIVED 2. jj_3_40 : negated conditional → SURVIVED 3. jj_3_40 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_40 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_40 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LPAREN)) { |
| 7473 |
3
1. jj_3_40 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_40 → SURVIVED 2. jj_3_40 : Substituted 1 with 0 → SURVIVED 3. jj_3_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 7474 | } | |
| 7475 |
3
1. jj_3_40 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_40 → NO_COVERAGE 2. jj_3_40 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7476 | } | |
| 7477 | ||
| 7478 | final private boolean jj_3R_248() { | |
| 7479 |
4
1. jj_3R_248 : negated conditional → NO_COVERAGE 2. jj_3R_248 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 3. jj_3R_248 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_248 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_84()) { |
| 7480 |
3
1. jj_3R_248 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_248 → NO_COVERAGE 2. jj_3R_248 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_248 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7481 | } | |
| 7482 |
3
1. jj_3R_248 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_248 → NO_COVERAGE 2. jj_3R_248 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_248 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7483 | } | |
| 7484 | ||
| 7485 | final private boolean jj_3R_210() { | |
| 7486 |
4
1. jj_3R_210 : negated conditional → NO_COVERAGE 2. jj_3R_210 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_63 → NO_COVERAGE 3. jj_3R_210 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_210 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_63()) { |
| 7487 |
3
1. jj_3R_210 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_210 → NO_COVERAGE 2. jj_3R_210 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_210 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7488 | } | |
| 7489 | Token xsp; | |
| 7490 | while (true) { | |
| 7491 | xsp = jj_scanpos; | |
| 7492 |
4
1. jj_3R_210 : negated conditional → NO_COVERAGE 2. jj_3R_210 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_5 → NO_COVERAGE 3. jj_3R_210 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_210 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_5()) { |
| 7493 |
1
1. jj_3R_210 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7494 | break; | |
| 7495 | } | |
| 7496 | } | |
| 7497 |
3
1. jj_3R_210 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_210 → NO_COVERAGE 2. jj_3R_210 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_210 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7498 | } | |
| 7499 | ||
| 7500 | final private boolean jj_3R_233() { | |
| 7501 | Token xsp; | |
| 7502 | xsp = jj_scanpos; | |
| 7503 |
4
1. jj_3R_233 : negated conditional → NO_COVERAGE 2. jj_3R_233 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_248 → NO_COVERAGE 3. jj_3R_233 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_233 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_248()) { |
| 7504 |
1
1. jj_3R_233 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7505 | } | |
| 7506 |
4
1. jj_3R_233 : negated conditional → NO_COVERAGE 2. jj_3R_233 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_76 → NO_COVERAGE 3. jj_3R_233 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_233 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_76()) { |
| 7507 |
3
1. jj_3R_233 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_233 → NO_COVERAGE 2. jj_3R_233 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_233 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7508 | } | |
| 7509 |
4
1. jj_3R_233 : negated conditional → NO_COVERAGE 2. jj_3R_233 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_249 → NO_COVERAGE 3. jj_3R_233 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_233 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_249()) { |
| 7510 |
3
1. jj_3R_233 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_233 → NO_COVERAGE 2. jj_3R_233 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_233 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7511 | } | |
| 7512 | xsp = jj_scanpos; | |
| 7513 |
4
1. jj_3R_233 : negated conditional → NO_COVERAGE 2. jj_3R_233 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_250 → NO_COVERAGE 3. jj_3R_233 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_233 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_250()) { |
| 7514 |
1
1. jj_3R_233 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7515 | } | |
| 7516 | xsp = jj_scanpos; | |
| 7517 |
4
1. jj_3R_233 : negated conditional → NO_COVERAGE 2. jj_3R_233 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_251 → NO_COVERAGE 3. jj_3R_233 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_233 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_251()) { |
| 7518 |
1
1. jj_3R_233 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7519 |
5
1. jj_3R_233 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_233 : negated conditional → NO_COVERAGE 3. jj_3R_233 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_233 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_233 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(83)) { |
| 7520 |
3
1. jj_3R_233 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_233 → NO_COVERAGE 2. jj_3R_233 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_233 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7521 | } | |
| 7522 | } | |
| 7523 |
3
1. jj_3R_233 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_233 → NO_COVERAGE 2. jj_3R_233 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_233 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7524 | } | |
| 7525 | ||
| 7526 | final private boolean jj_3R_264() { | |
| 7527 |
5
1. jj_3R_264 : Substituted 87 with 88 → NO_COVERAGE 2. jj_3R_264 : negated conditional → NO_COVERAGE 3. jj_3R_264 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_264 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_264 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(ASSIGN)) { |
| 7528 |
3
1. jj_3R_264 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_264 → NO_COVERAGE 2. jj_3R_264 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_264 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7529 | } | |
| 7530 |
4
1. jj_3R_264 : negated conditional → NO_COVERAGE 2. jj_3R_264 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_63 → NO_COVERAGE 3. jj_3R_264 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_264 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_63()) { |
| 7531 |
3
1. jj_3R_264 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_264 → NO_COVERAGE 2. jj_3R_264 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_264 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7532 | } | |
| 7533 |
3
1. jj_3R_264 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_264 → NO_COVERAGE 2. jj_3R_264 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_264 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7534 | } | |
| 7535 | ||
| 7536 | final private boolean jj_3R_247() { | |
| 7537 |
5
1. jj_3R_247 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_247 : negated conditional → NO_COVERAGE 3. jj_3R_247 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_247 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_247 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 7538 |
3
1. jj_3R_247 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_247 → NO_COVERAGE 2. jj_3R_247 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_247 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7539 | } | |
| 7540 |
4
1. jj_3R_247 : negated conditional → NO_COVERAGE 2. jj_3R_247 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_246 → NO_COVERAGE 3. jj_3R_247 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_247 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_246()) { |
| 7541 |
3
1. jj_3R_247 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_247 → NO_COVERAGE 2. jj_3R_247 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_247 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7542 | } | |
| 7543 |
3
1. jj_3R_247 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_247 → NO_COVERAGE 2. jj_3R_247 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_247 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7544 | } | |
| 7545 | ||
| 7546 | final private boolean jj_3R_276() { | |
| 7547 |
5
1. jj_3R_276 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3R_276 : negated conditional → NO_COVERAGE 3. jj_3R_276 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_276 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_276 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 7548 |
3
1. jj_3R_276 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_276 → NO_COVERAGE 2. jj_3R_276 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_276 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7549 | } | |
| 7550 |
5
1. jj_3R_276 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3R_276 : negated conditional → NO_COVERAGE 3. jj_3R_276 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_276 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_276 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 7551 |
3
1. jj_3R_276 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_276 → NO_COVERAGE 2. jj_3R_276 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_276 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7552 | } | |
| 7553 |
3
1. jj_3R_276 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_276 → NO_COVERAGE 2. jj_3R_276 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_276 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7554 | } | |
| 7555 | ||
| 7556 | final private boolean jj_3R_115() { | |
| 7557 |
5
1. jj_3R_115 : Substituted 79 with 80 → NO_COVERAGE 2. jj_3R_115 : negated conditional → NO_COVERAGE 3. jj_3R_115 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_115 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_115 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACE)) { |
| 7558 |
3
1. jj_3R_115 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_115 → NO_COVERAGE 2. jj_3R_115 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_115 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7559 | } | |
| 7560 | Token xsp; | |
| 7561 | xsp = jj_scanpos; | |
| 7562 |
4
1. jj_3R_115 : negated conditional → NO_COVERAGE 2. jj_3R_115 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_210 → NO_COVERAGE 3. jj_3R_115 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_115 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_210()) { |
| 7563 |
1
1. jj_3R_115 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7564 | } | |
| 7565 | xsp = jj_scanpos; | |
| 7566 |
5
1. jj_3R_115 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_115 : negated conditional → NO_COVERAGE 3. jj_3R_115 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_115 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_115 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(84)) { |
| 7567 |
1
1. jj_3R_115 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7568 | } | |
| 7569 |
5
1. jj_3R_115 : Substituted 80 with 81 → NO_COVERAGE 2. jj_3R_115 : negated conditional → NO_COVERAGE 3. jj_3R_115 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_115 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_115 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACE)) { |
| 7570 |
3
1. jj_3R_115 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_115 → NO_COVERAGE 2. jj_3R_115 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_115 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7571 | } | |
| 7572 |
3
1. jj_3R_115 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_115 → NO_COVERAGE 2. jj_3R_115 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_115 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7573 | } | |
| 7574 | ||
| 7575 | final private boolean jj_3R_61() { | |
| 7576 |
5
1. jj_3R_61 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3R_61 : negated conditional → NO_COVERAGE 3. jj_3R_61 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_61 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_61 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 7577 |
3
1. jj_3R_61 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_61 → NO_COVERAGE 2. jj_3R_61 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_61 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7578 | } | |
| 7579 |
5
1. jj_3R_61 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3R_61 : negated conditional → NO_COVERAGE 3. jj_3R_61 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_61 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_61 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 7580 |
3
1. jj_3R_61 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_61 → NO_COVERAGE 2. jj_3R_61 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_61 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7581 | } | |
| 7582 |
3
1. jj_3R_61 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_61 → NO_COVERAGE 2. jj_3R_61 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_61 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7583 | } | |
| 7584 | ||
| 7585 | final private boolean jj_3_39() { | |
| 7586 |
5
1. jj_3_39 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3_39 : negated conditional → NO_COVERAGE 3. jj_3_39 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_39 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_39 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 7587 |
3
1. jj_3_39 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_39 → NO_COVERAGE 2. jj_3_39 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7588 | } | |
| 7589 |
4
1. jj_3_39 : negated conditional → NO_COVERAGE 2. jj_3_39 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_82 → NO_COVERAGE 3. jj_3_39 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_39 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_82()) { |
| 7590 |
3
1. jj_3_39 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_39 → NO_COVERAGE 2. jj_3_39 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7591 | } | |
| 7592 |
3
1. jj_3_39 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_39 → NO_COVERAGE 2. jj_3_39 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7593 | } | |
| 7594 | ||
| 7595 | final private boolean jj_3R_88() { | |
| 7596 |
4
1. jj_3R_88 : negated conditional → NO_COVERAGE 2. jj_3R_88 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_88 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_88 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 7597 |
3
1. jj_3R_88 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_88 → NO_COVERAGE 2. jj_3R_88 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_88 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7598 | } | |
| 7599 |
3
1. jj_3R_88 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_88 → NO_COVERAGE 2. jj_3R_88 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_88 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7600 | } | |
| 7601 | ||
| 7602 | final private boolean jj_3R_87() { | |
| 7603 |
4
1. jj_3R_87 : negated conditional → NO_COVERAGE 2. jj_3R_87 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_115 → NO_COVERAGE 3. jj_3R_87 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_87 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_115()) { |
| 7604 |
3
1. jj_3R_87 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_87 → NO_COVERAGE 2. jj_3R_87 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_87 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7605 | } | |
| 7606 |
3
1. jj_3R_87 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_87 → NO_COVERAGE 2. jj_3R_87 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_87 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7607 | } | |
| 7608 | ||
| 7609 | final private boolean jj_3R_63() { | |
| 7610 | Token xsp; | |
| 7611 | xsp = jj_scanpos; | |
| 7612 |
4
1. jj_3R_63 : negated conditional → NO_COVERAGE 2. jj_3R_63 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_87 → NO_COVERAGE 3. jj_3R_63 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_63 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_87()) { |
| 7613 |
1
1. jj_3R_63 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7614 |
4
1. jj_3R_63 : negated conditional → NO_COVERAGE 2. jj_3R_63 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_88 → NO_COVERAGE 3. jj_3R_63 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_63 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_88()) { |
| 7615 |
3
1. jj_3R_63 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_63 → NO_COVERAGE 2. jj_3R_63 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_63 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7616 | } | |
| 7617 | } | |
| 7618 |
3
1. jj_3R_63 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_63 → NO_COVERAGE 2. jj_3R_63 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_63 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7619 | } | |
| 7620 | ||
| 7621 | final private boolean jj_3R_263() { | |
| 7622 |
5
1. jj_3R_263 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_263 : negated conditional → NO_COVERAGE 3. jj_3R_263 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_263 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_263 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 7623 |
3
1. jj_3R_263 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_263 → NO_COVERAGE 2. jj_3R_263 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_263 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7624 | } | |
| 7625 | Token xsp; | |
| 7626 | while (true) { | |
| 7627 | xsp = jj_scanpos; | |
| 7628 |
4
1. jj_3R_263 : negated conditional → NO_COVERAGE 2. jj_3R_263 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_276 → NO_COVERAGE 3. jj_3R_263 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_263 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_276()) { |
| 7629 |
1
1. jj_3R_263 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7630 | break; | |
| 7631 | } | |
| 7632 | } | |
| 7633 |
3
1. jj_3R_263 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_263 → NO_COVERAGE 2. jj_3R_263 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_263 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7634 | } | |
| 7635 | ||
| 7636 | final private boolean jj_3R_246() { | |
| 7637 |
4
1. jj_3R_246 : negated conditional → NO_COVERAGE 2. jj_3R_246 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_263 → NO_COVERAGE 3. jj_3R_246 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_246 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_263()) { |
| 7638 |
3
1. jj_3R_246 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_246 → NO_COVERAGE 2. jj_3R_246 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_246 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7639 | } | |
| 7640 | Token xsp; | |
| 7641 | xsp = jj_scanpos; | |
| 7642 |
4
1. jj_3R_246 : negated conditional → NO_COVERAGE 2. jj_3R_246 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_264 → NO_COVERAGE 3. jj_3R_246 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_246 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_264()) { |
| 7643 |
1
1. jj_3R_246 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7644 | } | |
| 7645 |
3
1. jj_3R_246 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_246 → NO_COVERAGE 2. jj_3R_246 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_246 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7646 | } | |
| 7647 | ||
| 7648 | final private boolean jj_3_3() { | |
| 7649 |
4
1. jj_3_3 : negated conditional → NO_COVERAGE 2. jj_3_3 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3_3 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_3 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 7650 |
3
1. jj_3_3 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_3 → NO_COVERAGE 2. jj_3_3 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7651 | } | |
| 7652 |
5
1. jj_3_3 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3_3 : negated conditional → NO_COVERAGE 3. jj_3_3 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_3 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_3 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 7653 |
3
1. jj_3_3 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_3 → NO_COVERAGE 2. jj_3_3 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7654 | } | |
| 7655 | Token xsp; | |
| 7656 | while (true) { | |
| 7657 | xsp = jj_scanpos; | |
| 7658 |
4
1. jj_3_3 : negated conditional → NO_COVERAGE 2. jj_3_3 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_61 → NO_COVERAGE 3. jj_3_3 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_3 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_61()) { |
| 7659 |
1
1. jj_3_3 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7660 | break; | |
| 7661 | } | |
| 7662 | } | |
| 7663 | xsp = jj_scanpos; | |
| 7664 |
5
1. jj_3_3 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3_3 : negated conditional → NO_COVERAGE 3. jj_3_3 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_3 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_3 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(84)) { |
| 7665 |
1
1. jj_3_3 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7666 |
5
1. jj_3_3 : Substituted 87 with 88 → NO_COVERAGE 2. jj_3_3 : negated conditional → NO_COVERAGE 3. jj_3_3 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_3 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_3 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(87)) { |
| 7667 |
1
1. jj_3_3 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7668 |
5
1. jj_3_3 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3_3 : negated conditional → NO_COVERAGE 3. jj_3_3 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_3 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_3 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(83)) { |
| 7669 |
3
1. jj_3_3 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_3 → NO_COVERAGE 2. jj_3_3 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7670 | } | |
| 7671 | } | |
| 7672 | } | |
| 7673 |
3
1. jj_3_3 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_3 → NO_COVERAGE 2. jj_3_3 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7674 | } | |
| 7675 | ||
| 7676 | final private boolean jj_3R_59() { | |
| 7677 |
4
1. jj_3R_59 : negated conditional → NO_COVERAGE 2. jj_3R_59 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 3. jj_3R_59 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_59 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_84()) { |
| 7678 |
3
1. jj_3R_59 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_59 → NO_COVERAGE 2. jj_3R_59 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_59 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7679 | } | |
| 7680 |
3
1. jj_3R_59 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_59 → NO_COVERAGE 2. jj_3R_59 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_59 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7681 | } | |
| 7682 | ||
| 7683 | final private boolean jj_3R_128() { | |
| 7684 |
5
1. jj_3R_128 : Substituted 79 with 80 → NO_COVERAGE 2. jj_3R_128 : negated conditional → NO_COVERAGE 3. jj_3R_128 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_128 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_128 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACE)) { |
| 7685 |
3
1. jj_3R_128 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_128 → NO_COVERAGE 2. jj_3R_128 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7686 | } | |
| 7687 |
4
1. jj_3R_128 : negated conditional → NO_COVERAGE 2. jj_3R_128 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_82 → NO_COVERAGE 3. jj_3R_128 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_128 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_82()) { |
| 7688 |
3
1. jj_3R_128 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_128 → NO_COVERAGE 2. jj_3R_128 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7689 | } | |
| 7690 | Token xsp; | |
| 7691 | while (true) { | |
| 7692 | xsp = jj_scanpos; | |
| 7693 |
4
1. jj_3R_128 : negated conditional → NO_COVERAGE 2. jj_3R_128 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_39 → NO_COVERAGE 3. jj_3R_128 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_128 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_39()) { |
| 7694 |
1
1. jj_3R_128 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7695 | break; | |
| 7696 | } | |
| 7697 | } | |
| 7698 | xsp = jj_scanpos; | |
| 7699 |
5
1. jj_3R_128 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_128 : negated conditional → NO_COVERAGE 3. jj_3R_128 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_128 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_128 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(84)) { |
| 7700 |
1
1. jj_3R_128 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7701 | } | |
| 7702 |
5
1. jj_3R_128 : Substituted 80 with 81 → NO_COVERAGE 2. jj_3R_128 : negated conditional → NO_COVERAGE 3. jj_3R_128 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_128 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_128 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACE)) { |
| 7703 |
3
1. jj_3R_128 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_128 → NO_COVERAGE 2. jj_3R_128 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7704 | } | |
| 7705 |
3
1. jj_3R_128 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_128 → NO_COVERAGE 2. jj_3R_128 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7706 | } | |
| 7707 | ||
| 7708 | final private boolean jj_3R_292() { | |
| 7709 |
5
1. jj_3R_292 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_292 : negated conditional → NO_COVERAGE 3. jj_3R_292 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_292 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_292 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 7710 |
3
1. jj_3R_292 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_292 → NO_COVERAGE 2. jj_3R_292 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_292 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7711 | } | |
| 7712 |
4
1. jj_3R_292 : negated conditional → NO_COVERAGE 2. jj_3R_292 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_291 → NO_COVERAGE 3. jj_3R_292 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_292 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_291()) { |
| 7713 |
3
1. jj_3R_292 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_292 → NO_COVERAGE 2. jj_3R_292 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_292 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7714 | } | |
| 7715 |
3
1. jj_3R_292 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_292 → NO_COVERAGE 2. jj_3R_292 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_292 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7716 | } | |
| 7717 | ||
| 7718 | final private boolean jj_3_2() { | |
| 7719 | Token xsp; | |
| 7720 | xsp = jj_scanpos; | |
| 7721 |
4
1. jj_3_2 : negated conditional → NO_COVERAGE 2. jj_3_2 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_59 → NO_COVERAGE 3. jj_3_2 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_2 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_59()) { |
| 7722 |
1
1. jj_3_2 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7723 | } | |
| 7724 |
5
1. jj_3_2 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3_2 : negated conditional → NO_COVERAGE 3. jj_3_2 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_2 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_2 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 7725 |
3
1. jj_3_2 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_2 → NO_COVERAGE 2. jj_3_2 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7726 | } | |
| 7727 |
5
1. jj_3_2 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3_2 : negated conditional → NO_COVERAGE 3. jj_3_2 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_2 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_2 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 7728 |
3
1. jj_3_2 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_2 → NO_COVERAGE 2. jj_3_2 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7729 | } | |
| 7730 |
3
1. jj_3_2 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_2 → NO_COVERAGE 2. jj_3_2 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7731 | } | |
| 7732 | ||
| 7733 | final private boolean jj_3R_232() { | |
| 7734 |
4
1. jj_3R_232 : negated conditional → NO_COVERAGE 2. jj_3R_232 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3R_232 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_232 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 7735 |
3
1. jj_3R_232 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_232 → NO_COVERAGE 2. jj_3R_232 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_232 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7736 | } | |
| 7737 |
4
1. jj_3R_232 : negated conditional → NO_COVERAGE 2. jj_3R_232 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_246 → NO_COVERAGE 3. jj_3R_232 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_232 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_246()) { |
| 7738 |
3
1. jj_3R_232 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_232 → NO_COVERAGE 2. jj_3R_232 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_232 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7739 | } | |
| 7740 | Token xsp; | |
| 7741 | while (true) { | |
| 7742 | xsp = jj_scanpos; | |
| 7743 |
4
1. jj_3R_232 : negated conditional → NO_COVERAGE 2. jj_3R_232 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_247 → NO_COVERAGE 3. jj_3R_232 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_232 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_247()) { |
| 7744 |
1
1. jj_3R_232 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7745 | break; | |
| 7746 | } | |
| 7747 | } | |
| 7748 |
5
1. jj_3R_232 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_232 : negated conditional → NO_COVERAGE 3. jj_3R_232 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_232 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_232 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 7749 |
3
1. jj_3R_232 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_232 → NO_COVERAGE 2. jj_3R_232 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_232 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7750 | } | |
| 7751 |
3
1. jj_3R_232 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_232 → NO_COVERAGE 2. jj_3R_232 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_232 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7752 | } | |
| 7753 | ||
| 7754 | final private boolean jj_3R_108() { | |
| 7755 |
4
1. jj_3R_108 : negated conditional → NO_COVERAGE 2. jj_3R_108 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_96 → NO_COVERAGE 3. jj_3R_108 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_108 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_96()) { |
| 7756 |
3
1. jj_3R_108 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_108 → NO_COVERAGE 2. jj_3R_108 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_108 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7757 | } | |
| 7758 |
3
1. jj_3R_108 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_108 → NO_COVERAGE 2. jj_3R_108 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_108 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7759 | } | |
| 7760 | ||
| 7761 | final private boolean jj_3R_225() { | |
| 7762 |
4
1. jj_3R_225 : negated conditional → NO_COVERAGE 2. jj_3R_225 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_233 → NO_COVERAGE 3. jj_3R_225 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_225 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_233()) { |
| 7763 |
3
1. jj_3R_225 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_225 → NO_COVERAGE 2. jj_3R_225 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_225 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7764 | } | |
| 7765 |
3
1. jj_3R_225 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_225 → NO_COVERAGE 2. jj_3R_225 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_225 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7766 | } | |
| 7767 | ||
| 7768 | final private boolean jj_3R_107() { | |
| 7769 |
4
1. jj_3R_107 : negated conditional → NO_COVERAGE 2. jj_3R_107 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_128 → NO_COVERAGE 3. jj_3R_107 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_107 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_128()) { |
| 7770 |
3
1. jj_3R_107 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_107 → NO_COVERAGE 2. jj_3R_107 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_107 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7771 | } | |
| 7772 |
3
1. jj_3R_107 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_107 → NO_COVERAGE 2. jj_3R_107 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_107 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7773 | } | |
| 7774 | ||
| 7775 | final private boolean jj_3R_106() { | |
| 7776 |
4
1. jj_3R_106 : negated conditional → NO_COVERAGE 2. jj_3R_106 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_83 → NO_COVERAGE 3. jj_3R_106 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_106 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_83()) { |
| 7777 |
3
1. jj_3R_106 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_106 → NO_COVERAGE 2. jj_3R_106 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_106 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7778 | } | |
| 7779 |
3
1. jj_3R_106 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_106 → NO_COVERAGE 2. jj_3R_106 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_106 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7780 | } | |
| 7781 | ||
| 7782 | final private boolean jj_3R_82() { | |
| 7783 | Token xsp; | |
| 7784 | xsp = jj_scanpos; | |
| 7785 |
4
1. jj_3R_82 : negated conditional → NO_COVERAGE 2. jj_3R_82 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_106 → NO_COVERAGE 3. jj_3R_82 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_82 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_106()) { |
| 7786 |
1
1. jj_3R_82 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7787 |
4
1. jj_3R_82 : negated conditional → NO_COVERAGE 2. jj_3R_82 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_107 → NO_COVERAGE 3. jj_3R_82 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_82 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_107()) { |
| 7788 |
1
1. jj_3R_82 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7789 |
4
1. jj_3R_82 : negated conditional → NO_COVERAGE 2. jj_3R_82 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_108 → NO_COVERAGE 3. jj_3R_82 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_82 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_108()) { |
| 7790 |
3
1. jj_3R_82 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_82 → NO_COVERAGE 2. jj_3R_82 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_82 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7791 | } | |
| 7792 | } | |
| 7793 | } | |
| 7794 |
3
1. jj_3R_82 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_82 → NO_COVERAGE 2. jj_3R_82 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_82 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7795 | } | |
| 7796 | ||
| 7797 | final private boolean jj_3R_144() { | |
| 7798 |
5
1. jj_3R_144 : Substituted 105 with 106 → NO_COVERAGE 2. jj_3R_144 : negated conditional → NO_COVERAGE 3. jj_3R_144 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_144 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_144 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(BIT_AND)) { |
| 7799 |
3
1. jj_3R_144 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_144 → NO_COVERAGE 2. jj_3R_144 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_144 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7800 | } | |
| 7801 |
4
1. jj_3R_144 : negated conditional → NO_COVERAGE 2. jj_3R_144 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → NO_COVERAGE 3. jj_3R_144 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_144 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_123()) { |
| 7802 |
3
1. jj_3R_144 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_144 → NO_COVERAGE 2. jj_3R_144 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_144 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7803 | } | |
| 7804 |
3
1. jj_3R_144 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_144 → NO_COVERAGE 2. jj_3R_144 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_144 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7805 | } | |
| 7806 | ||
| 7807 | final private boolean jj_3R_224() { | |
| 7808 |
4
1. jj_3R_224 : negated conditional → NO_COVERAGE 2. jj_3R_224 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_232 → NO_COVERAGE 3. jj_3R_224 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_224 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_232()) { |
| 7809 |
3
1. jj_3R_224 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_224 → NO_COVERAGE 2. jj_3R_224 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_224 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7810 | } | |
| 7811 |
3
1. jj_3R_224 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_224 → NO_COVERAGE 2. jj_3R_224 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_224 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7812 | } | |
| 7813 | ||
| 7814 | final private boolean jj_3R_223() { | |
| 7815 |
4
1. jj_3R_223 : negated conditional → NO_COVERAGE 2. jj_3R_223 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_231 → NO_COVERAGE 3. jj_3R_223 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_223 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_231()) { |
| 7816 |
3
1. jj_3R_223 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_223 → NO_COVERAGE 2. jj_3R_223 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_223 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7817 | } | |
| 7818 |
3
1. jj_3R_223 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_223 → NO_COVERAGE 2. jj_3R_223 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_223 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7819 | } | |
| 7820 | ||
| 7821 | final private boolean jj_3R_291() { | |
| 7822 |
5
1. jj_3R_291 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_291 : negated conditional → NO_COVERAGE 3. jj_3R_291 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_291 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_291 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 7823 |
3
1. jj_3R_291 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_291 → NO_COVERAGE 2. jj_3R_291 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_291 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7824 | } | |
| 7825 |
5
1. jj_3R_291 : Substituted 87 with 88 → NO_COVERAGE 2. jj_3R_291 : negated conditional → NO_COVERAGE 3. jj_3R_291 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_291 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_291 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(ASSIGN)) { |
| 7826 |
3
1. jj_3R_291 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_291 → NO_COVERAGE 2. jj_3R_291 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_291 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7827 | } | |
| 7828 |
4
1. jj_3R_291 : negated conditional → NO_COVERAGE 2. jj_3R_291 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_82 → NO_COVERAGE 3. jj_3R_291 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_291 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_82()) { |
| 7829 |
3
1. jj_3R_291 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_291 → NO_COVERAGE 2. jj_3R_291 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_291 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7830 | } | |
| 7831 |
3
1. jj_3R_291 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_291 → NO_COVERAGE 2. jj_3R_291 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_291 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7832 | } | |
| 7833 | ||
| 7834 | final private boolean jj_3R_222() { | |
| 7835 |
4
1. jj_3R_222 : negated conditional → NO_COVERAGE 2. jj_3R_222 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_230 → NO_COVERAGE 3. jj_3R_222 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_222 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_230()) { |
| 7836 |
3
1. jj_3R_222 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_222 → NO_COVERAGE 2. jj_3R_222 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_222 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7837 | } | |
| 7838 |
3
1. jj_3R_222 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_222 → NO_COVERAGE 2. jj_3R_222 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_222 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7839 | } | |
| 7840 | ||
| 7841 | final private boolean jj_3R_221() { | |
| 7842 |
4
1. jj_3R_221 : negated conditional → NO_COVERAGE 2. jj_3R_221 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_147 → NO_COVERAGE 3. jj_3R_221 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_221 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_147()) { |
| 7843 |
3
1. jj_3R_221 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_221 → NO_COVERAGE 2. jj_3R_221 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_221 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7844 | } | |
| 7845 |
3
1. jj_3R_221 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_221 → NO_COVERAGE 2. jj_3R_221 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_221 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7846 | } | |
| 7847 | ||
| 7848 | final private boolean jj_3R_281() { | |
| 7849 |
4
1. jj_3R_281 : negated conditional → NO_COVERAGE 2. jj_3R_281 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_291 → NO_COVERAGE 3. jj_3R_281 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_281 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_291()) { |
| 7850 |
3
1. jj_3R_281 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_281 → NO_COVERAGE 2. jj_3R_281 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_281 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7851 | } | |
| 7852 | Token xsp; | |
| 7853 | while (true) { | |
| 7854 | xsp = jj_scanpos; | |
| 7855 |
4
1. jj_3R_281 : negated conditional → NO_COVERAGE 2. jj_3R_281 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_292 → NO_COVERAGE 3. jj_3R_281 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_281 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_292()) { |
| 7856 |
1
1. jj_3R_281 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7857 | break; | |
| 7858 | } | |
| 7859 | } | |
| 7860 |
3
1. jj_3R_281 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_281 → NO_COVERAGE 2. jj_3R_281 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_281 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7861 | } | |
| 7862 | ||
| 7863 | final private boolean jj_3R_280() { | |
| 7864 |
4
1. jj_3R_280 : negated conditional → NO_COVERAGE 2. jj_3R_280 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_281 → NO_COVERAGE 3. jj_3R_280 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_280 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_281()) { |
| 7865 |
3
1. jj_3R_280 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_280 → NO_COVERAGE 2. jj_3R_280 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_280 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7866 | } | |
| 7867 |
3
1. jj_3R_280 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_280 → NO_COVERAGE 2. jj_3R_280 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_280 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7868 | } | |
| 7869 | ||
| 7870 | final private boolean jj_3R_81() { | |
| 7871 |
5
1. jj_3R_81 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_81 : negated conditional → NO_COVERAGE 3. jj_3R_81 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_81 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_81 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 7872 |
3
1. jj_3R_81 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_81 → NO_COVERAGE 2. jj_3R_81 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7873 | } | |
| 7874 |
5
1. jj_3R_81 : Substituted 87 with 88 → NO_COVERAGE 2. jj_3R_81 : negated conditional → NO_COVERAGE 3. jj_3R_81 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_81 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_81 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(ASSIGN)) { |
| 7875 |
3
1. jj_3R_81 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_81 → NO_COVERAGE 2. jj_3R_81 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7876 | } | |
| 7877 |
3
1. jj_3R_81 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_81 → NO_COVERAGE 2. jj_3R_81 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7878 | } | |
| 7879 | ||
| 7880 | final private boolean jj_3R_217() { | |
| 7881 |
4
1. jj_3R_217 : negated conditional → NO_COVERAGE 2. jj_3R_217 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_220 → NO_COVERAGE 3. jj_3R_217 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_217 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_220()) { |
| 7882 |
3
1. jj_3R_217 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_217 → NO_COVERAGE 2. jj_3R_217 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_217 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7883 | } | |
| 7884 | Token xsp; | |
| 7885 | xsp = jj_scanpos; | |
| 7886 |
4
1. jj_3R_217 : negated conditional → NO_COVERAGE 2. jj_3R_217 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_221 → NO_COVERAGE 3. jj_3R_217 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_217 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_221()) { |
| 7887 |
1
1. jj_3R_217 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7888 |
4
1. jj_3R_217 : negated conditional → NO_COVERAGE 2. jj_3R_217 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_222 → NO_COVERAGE 3. jj_3R_217 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_217 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_222()) { |
| 7889 |
1
1. jj_3R_217 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7890 |
4
1. jj_3R_217 : negated conditional → NO_COVERAGE 2. jj_3R_217 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_223 → NO_COVERAGE 3. jj_3R_217 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_217 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_223()) { |
| 7891 |
1
1. jj_3R_217 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7892 |
4
1. jj_3R_217 : negated conditional → NO_COVERAGE 2. jj_3R_217 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_224 → NO_COVERAGE 3. jj_3R_217 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_217 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_224()) { |
| 7893 |
1
1. jj_3R_217 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7894 |
4
1. jj_3R_217 : negated conditional → NO_COVERAGE 2. jj_3R_217 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_225 → NO_COVERAGE 3. jj_3R_217 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_217 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_225()) { |
| 7895 |
3
1. jj_3R_217 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_217 → NO_COVERAGE 2. jj_3R_217 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_217 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7896 | } | |
| 7897 | } | |
| 7898 | } | |
| 7899 | } | |
| 7900 | } | |
| 7901 |
3
1. jj_3R_217 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_217 → NO_COVERAGE 2. jj_3R_217 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_217 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7902 | } | |
| 7903 | ||
| 7904 | final private boolean jj_3R_130() { | |
| 7905 |
5
1. jj_3R_130 : Substituted 86 with 87 → SURVIVED 2. jj_3R_130 : negated conditional → SURVIVED 3. jj_3R_130 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_130 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_130 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(AT)) { |
| 7906 |
3
1. jj_3R_130 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_130 → KILLED 2. jj_3R_130 : Substituted 1 with 0 → KILLED 3. jj_3R_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 7907 | } | |
| 7908 |
4
1. jj_3R_130 : negated conditional → NO_COVERAGE 2. jj_3R_130 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3R_130 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_130 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 7909 |
3
1. jj_3R_130 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_130 → NO_COVERAGE 2. jj_3R_130 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7910 | } | |
| 7911 |
5
1. jj_3R_130 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_130 : negated conditional → NO_COVERAGE 3. jj_3R_130 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_130 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_130 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 7912 |
3
1. jj_3R_130 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_130 → NO_COVERAGE 2. jj_3R_130 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7913 | } | |
| 7914 |
4
1. jj_3R_130 : negated conditional → NO_COVERAGE 2. jj_3R_130 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_82 → NO_COVERAGE 3. jj_3R_130 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_130 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_82()) { |
| 7915 |
3
1. jj_3R_130 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_130 → NO_COVERAGE 2. jj_3R_130 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7916 | } | |
| 7917 |
5
1. jj_3R_130 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_130 : negated conditional → NO_COVERAGE 3. jj_3R_130 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_130 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_130 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 7918 |
3
1. jj_3R_130 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_130 → NO_COVERAGE 2. jj_3R_130 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7919 | } | |
| 7920 |
3
1. jj_3R_130 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_130 → NO_COVERAGE 2. jj_3R_130 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7921 | } | |
| 7922 | ||
| 7923 | final private boolean jj_3_4() { | |
| 7924 |
4
1. jj_3_4 : negated conditional → NO_COVERAGE 2. jj_3_4 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_62 → NO_COVERAGE 3. jj_3_4 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_4 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_62()) { |
| 7925 |
3
1. jj_3_4 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_4 → NO_COVERAGE 2. jj_3_4 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7926 | } | |
| 7927 |
3
1. jj_3_4 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_4 → NO_COVERAGE 2. jj_3_4 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7928 | } | |
| 7929 | ||
| 7930 | final private boolean jj_3R_214() { | |
| 7931 | Token xsp; | |
| 7932 | xsp = jj_scanpos; | |
| 7933 |
4
1. jj_3R_214 : negated conditional → NO_COVERAGE 2. jj_3R_214 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_4 → NO_COVERAGE 3. jj_3R_214 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_214 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_4()) { |
| 7934 |
1
1. jj_3R_214 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7935 |
4
1. jj_3R_214 : negated conditional → NO_COVERAGE 2. jj_3R_214 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_217 → NO_COVERAGE 3. jj_3R_214 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_214 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_217()) { |
| 7936 |
1
1. jj_3R_214 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 7937 |
5
1. jj_3R_214 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_214 : negated conditional → NO_COVERAGE 3. jj_3R_214 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_214 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_214 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(83)) { |
| 7938 |
3
1. jj_3R_214 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_214 → NO_COVERAGE 2. jj_3R_214 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_214 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7939 | } | |
| 7940 | } | |
| 7941 | } | |
| 7942 |
3
1. jj_3R_214 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_214 → NO_COVERAGE 2. jj_3R_214 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_214 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7943 | } | |
| 7944 | ||
| 7945 | final private boolean jj_3R_271() { | |
| 7946 |
4
1. jj_3R_271 : negated conditional → NO_COVERAGE 2. jj_3R_271 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_205 → NO_COVERAGE 3. jj_3R_271 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_271 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_205()) { |
| 7947 |
3
1. jj_3R_271 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_271 → NO_COVERAGE 2. jj_3R_271 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_271 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7948 | } | |
| 7949 |
3
1. jj_3R_271 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_271 → NO_COVERAGE 2. jj_3R_271 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_271 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7950 | } | |
| 7951 | ||
| 7952 | final private boolean jj_3R_211() { | |
| 7953 |
4
1. jj_3R_211 : negated conditional → NO_COVERAGE 2. jj_3R_211 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_214 → NO_COVERAGE 3. jj_3R_211 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_211 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_214()) { |
| 7954 |
3
1. jj_3R_211 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_211 → NO_COVERAGE 2. jj_3R_211 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_211 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7955 | } | |
| 7956 |
3
1. jj_3R_211 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_211 → NO_COVERAGE 2. jj_3R_211 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_211 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7957 | } | |
| 7958 | ||
| 7959 | final private boolean jj_3R_131() { | |
| 7960 |
5
1. jj_3R_131 : Substituted 86 with 87 → SURVIVED 2. jj_3R_131 : negated conditional → SURVIVED 3. jj_3R_131 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_131 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_131 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(AT)) { |
| 7961 |
3
1. jj_3R_131 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_131 → KILLED 2. jj_3R_131 : Substituted 1 with 0 → KILLED 3. jj_3R_131 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 7962 | } | |
| 7963 |
4
1. jj_3R_131 : negated conditional → NO_COVERAGE 2. jj_3R_131 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3R_131 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_131 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 7964 |
3
1. jj_3R_131 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_131 → NO_COVERAGE 2. jj_3R_131 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_131 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7965 | } | |
| 7966 |
3
1. jj_3R_131 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_131 → NO_COVERAGE 2. jj_3R_131 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_131 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7967 | } | |
| 7968 | ||
| 7969 | final private boolean jj_3R_113() { | |
| 7970 |
5
1. jj_3R_113 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_113 : negated conditional → NO_COVERAGE 3. jj_3R_113 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_113 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_113 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 7971 |
3
1. jj_3R_113 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_113 → NO_COVERAGE 2. jj_3R_113 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7972 | } | |
| 7973 |
4
1. jj_3R_113 : negated conditional → NO_COVERAGE 2. jj_3R_113 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_112 → NO_COVERAGE 3. jj_3R_113 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_113 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_112()) { |
| 7974 |
3
1. jj_3R_113 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_113 → NO_COVERAGE 2. jj_3R_113 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7975 | } | |
| 7976 |
3
1. jj_3R_113 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_113 → NO_COVERAGE 2. jj_3R_113 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7977 | } | |
| 7978 | ||
| 7979 | final private boolean jj_3R_132() { | |
| 7980 |
4
1. jj_3R_132 : negated conditional → NO_COVERAGE 2. jj_3R_132 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_137 → NO_COVERAGE 3. jj_3R_132 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_132 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_137()) { |
| 7981 |
3
1. jj_3R_132 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_132 → NO_COVERAGE 2. jj_3R_132 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_132 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7982 | } | |
| 7983 |
3
1. jj_3R_132 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_132 → NO_COVERAGE 2. jj_3R_132 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_132 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7984 | } | |
| 7985 | ||
| 7986 | final private boolean jj_3_38() { | |
| 7987 |
5
1. jj_3_38 : Substituted 86 with 87 → NO_COVERAGE 2. jj_3_38 : negated conditional → NO_COVERAGE 3. jj_3_38 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_38 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_38 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(AT)) { |
| 7988 |
3
1. jj_3_38 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_38 → NO_COVERAGE 2. jj_3_38 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7989 | } | |
| 7990 |
4
1. jj_3_38 : negated conditional → NO_COVERAGE 2. jj_3_38 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3_38 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_38 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 7991 |
3
1. jj_3_38 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_38 → NO_COVERAGE 2. jj_3_38 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7992 | } | |
| 7993 |
5
1. jj_3_38 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3_38 : negated conditional → NO_COVERAGE 3. jj_3_38 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_38 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_38 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 7994 |
3
1. jj_3_38 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_38 → NO_COVERAGE 2. jj_3_38 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 7995 | } | |
| 7996 |
3
1. jj_3_38 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_38 → NO_COVERAGE 2. jj_3_38 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 7997 | } | |
| 7998 | ||
| 7999 | final private boolean jj_3R_129() { | |
| 8000 |
5
1. jj_3R_129 : Substituted 86 with 87 → SURVIVED 2. jj_3R_129 : negated conditional → SURVIVED 3. jj_3R_129 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_129 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_129 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(AT)) { |
| 8001 |
3
1. jj_3R_129 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_129 → KILLED 2. jj_3R_129 : Substituted 1 with 0 → KILLED 3. jj_3R_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8002 | } | |
| 8003 |
4
1. jj_3R_129 : negated conditional → NO_COVERAGE 2. jj_3R_129 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3R_129 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_129 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 8004 |
3
1. jj_3R_129 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_129 → NO_COVERAGE 2. jj_3R_129 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8005 | } | |
| 8006 |
5
1. jj_3R_129 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_129 : negated conditional → NO_COVERAGE 3. jj_3R_129 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_129 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_129 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8007 |
3
1. jj_3R_129 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_129 → NO_COVERAGE 2. jj_3R_129 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8008 | } | |
| 8009 | Token xsp; | |
| 8010 | xsp = jj_scanpos; | |
| 8011 |
4
1. jj_3R_129 : negated conditional → NO_COVERAGE 2. jj_3R_129 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_280 → NO_COVERAGE 3. jj_3R_129 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_129 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_280()) { |
| 8012 |
1
1. jj_3R_129 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8013 | } | |
| 8014 |
5
1. jj_3R_129 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_129 : negated conditional → NO_COVERAGE 3. jj_3R_129 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_129 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_129 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 8015 |
3
1. jj_3R_129 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_129 → NO_COVERAGE 2. jj_3R_129 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8016 | } | |
| 8017 |
3
1. jj_3R_129 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_129 → NO_COVERAGE 2. jj_3R_129 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8018 | } | |
| 8019 | ||
| 8020 | final private boolean jj_3R_205() { | |
| 8021 |
5
1. jj_3R_205 : Substituted 79 with 80 → NO_COVERAGE 2. jj_3R_205 : negated conditional → NO_COVERAGE 3. jj_3R_205 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_205 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_205 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACE)) { |
| 8022 |
3
1. jj_3R_205 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_205 → NO_COVERAGE 2. jj_3R_205 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_205 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8023 | } | |
| 8024 | Token xsp; | |
| 8025 | while (true) { | |
| 8026 | xsp = jj_scanpos; | |
| 8027 |
4
1. jj_3R_205 : negated conditional → NO_COVERAGE 2. jj_3R_205 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_211 → NO_COVERAGE 3. jj_3R_205 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_205 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_211()) { |
| 8028 |
1
1. jj_3R_205 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8029 | break; | |
| 8030 | } | |
| 8031 | } | |
| 8032 |
5
1. jj_3R_205 : Substituted 80 with 81 → NO_COVERAGE 2. jj_3R_205 : negated conditional → NO_COVERAGE 3. jj_3R_205 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_205 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_205 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACE)) { |
| 8033 |
3
1. jj_3R_205 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_205 → NO_COVERAGE 2. jj_3R_205 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_205 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8034 | } | |
| 8035 |
3
1. jj_3R_205 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_205 → NO_COVERAGE 2. jj_3R_205 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_205 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8036 | } | |
| 8037 | ||
| 8038 | final private boolean jj_3_37() { | |
| 8039 |
5
1. jj_3_37 : Substituted 86 with 87 → NO_COVERAGE 2. jj_3_37 : negated conditional → NO_COVERAGE 3. jj_3_37 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_37 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_37 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(AT)) { |
| 8040 |
3
1. jj_3_37 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_37 → NO_COVERAGE 2. jj_3_37 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8041 | } | |
| 8042 |
4
1. jj_3_37 : negated conditional → NO_COVERAGE 2. jj_3_37 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3_37 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_37 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 8043 |
3
1. jj_3_37 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_37 → NO_COVERAGE 2. jj_3_37 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8044 | } | |
| 8045 |
5
1. jj_3_37 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3_37 : negated conditional → NO_COVERAGE 3. jj_3_37 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_37 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_37 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8046 |
3
1. jj_3_37 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_37 → NO_COVERAGE 2. jj_3_37 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8047 | } | |
| 8048 | Token xsp; | |
| 8049 | xsp = jj_scanpos; | |
| 8050 |
4
1. jj_3_37 : negated conditional → NO_COVERAGE 2. jj_3_37 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_81 → NO_COVERAGE 3. jj_3_37 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_37 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_81()) { |
| 8051 |
1
1. jj_3_37 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8052 |
5
1. jj_3_37 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3_37 : negated conditional → NO_COVERAGE 3. jj_3_37 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_37 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_37 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(78)) { |
| 8053 |
3
1. jj_3_37 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_37 → NO_COVERAGE 2. jj_3_37 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8054 | } | |
| 8055 | } | |
| 8056 |
3
1. jj_3_37 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_37 → NO_COVERAGE 2. jj_3_37 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8057 | } | |
| 8058 | ||
| 8059 | final private boolean jj_3R_137() { | |
| 8060 |
5
1. jj_3R_137 : Substituted 29 with 30 → NO_COVERAGE 2. jj_3R_137 : negated conditional → NO_COVERAGE 3. jj_3R_137 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_137 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_137 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(EXTENDS)) { |
| 8061 |
3
1. jj_3R_137 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_137 → NO_COVERAGE 2. jj_3R_137 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_137 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8062 | } | |
| 8063 |
4
1. jj_3R_137 : negated conditional → NO_COVERAGE 2. jj_3R_137 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → NO_COVERAGE 3. jj_3R_137 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_137 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_123()) { |
| 8064 |
3
1. jj_3R_137 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_137 → NO_COVERAGE 2. jj_3R_137 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_137 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8065 | } | |
| 8066 | Token xsp; | |
| 8067 | while (true) { | |
| 8068 | xsp = jj_scanpos; | |
| 8069 |
4
1. jj_3R_137 : negated conditional → NO_COVERAGE 2. jj_3R_137 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_144 → NO_COVERAGE 3. jj_3R_137 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_137 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_144()) { |
| 8070 |
1
1. jj_3R_137 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8071 | break; | |
| 8072 | } | |
| 8073 | } | |
| 8074 |
3
1. jj_3R_137 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_137 → NO_COVERAGE 2. jj_3R_137 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_137 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8075 | } | |
| 8076 | ||
| 8077 | final private boolean jj_3R_111() { | |
| 8078 |
4
1. jj_3R_111 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_111 : negated conditional → KILLED 3. jj_3R_111 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_131 → KILLED 4. jj_3R_111 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_131()) { |
| 8079 |
3
1. jj_3R_111 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_111 → KILLED 2. jj_3R_111 : Substituted 1 with 0 → KILLED 3. jj_3R_111 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8080 | } | |
| 8081 |
3
1. jj_3R_111 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_111 → NO_COVERAGE 2. jj_3R_111 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_111 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8082 | } | |
| 8083 | ||
| 8084 | final private boolean jj_3R_110() { | |
| 8085 |
4
1. jj_3R_110 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_110 : negated conditional → KILLED 3. jj_3R_110 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_130 → KILLED 4. jj_3R_110 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_130()) { |
| 8086 |
3
1. jj_3R_110 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_110 → KILLED 2. jj_3R_110 : Substituted 1 with 0 → KILLED 3. jj_3R_110 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8087 | } | |
| 8088 |
3
1. jj_3R_110 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_110 → NO_COVERAGE 2. jj_3R_110 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_110 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8089 | } | |
| 8090 | ||
| 8091 | final private boolean jj_3R_270() { | |
| 8092 |
4
1. jj_3R_270 : negated conditional → NO_COVERAGE 2. jj_3R_270 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → NO_COVERAGE 3. jj_3R_270 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_270 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_66()) { |
| 8093 |
3
1. jj_3R_270 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_270 → NO_COVERAGE 2. jj_3R_270 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_270 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8094 | } | |
| 8095 |
3
1. jj_3R_270 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_270 → NO_COVERAGE 2. jj_3R_270 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_270 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8096 | } | |
| 8097 | ||
| 8098 | final private boolean jj_3R_112() { | |
| 8099 |
5
1. jj_3R_112 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_112 : negated conditional → NO_COVERAGE 3. jj_3R_112 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_112 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_112 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 8100 |
3
1. jj_3R_112 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_112 → NO_COVERAGE 2. jj_3R_112 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_112 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8101 | } | |
| 8102 | Token xsp; | |
| 8103 | xsp = jj_scanpos; | |
| 8104 |
4
1. jj_3R_112 : negated conditional → NO_COVERAGE 2. jj_3R_112 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_132 → NO_COVERAGE 3. jj_3R_112 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_112 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_132()) { |
| 8105 |
1
1. jj_3R_112 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8106 | } | |
| 8107 |
3
1. jj_3R_112 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_112 → NO_COVERAGE 2. jj_3R_112 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_112 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8108 | } | |
| 8109 | ||
| 8110 | final private boolean jj_3R_109() { | |
| 8111 |
4
1. jj_3R_109 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_109 : negated conditional → KILLED 3. jj_3R_109 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_129 → KILLED 4. jj_3R_109 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_129()) { |
| 8112 |
3
1. jj_3R_109 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_109 → KILLED 2. jj_3R_109 : Substituted 1 with 0 → KILLED 3. jj_3R_109 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8113 | } | |
| 8114 |
3
1. jj_3R_109 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_109 → NO_COVERAGE 2. jj_3R_109 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_109 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8115 | } | |
| 8116 | ||
| 8117 | final private boolean jj_3R_97() { | |
| 8118 |
3
1. jj_3R_97 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_97 → NO_COVERAGE 2. jj_3R_97 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_97 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8119 | } | |
| 8120 | ||
| 8121 | final private boolean jj_3R_83() { | |
| 8122 | Token xsp; | |
| 8123 | xsp = jj_scanpos; | |
| 8124 |
4
1. jj_3R_83 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_83 : negated conditional → KILLED 3. jj_3R_83 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_109 → KILLED 4. jj_3R_83 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_109()) { |
| 8125 |
1
1. jj_3R_83 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8126 |
4
1. jj_3R_83 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_83 : negated conditional → KILLED 3. jj_3R_83 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_110 → KILLED 4. jj_3R_83 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_110()) { |
| 8127 |
1
1. jj_3R_83 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8128 |
4
1. jj_3R_83 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_83 : negated conditional → KILLED 3. jj_3R_83 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_111 → KILLED 4. jj_3R_83 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_111()) { |
| 8129 |
3
1. jj_3R_83 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_83 → KILLED 2. jj_3R_83 : Substituted 1 with 0 → KILLED 3. jj_3R_83 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8130 | } | |
| 8131 | } | |
| 8132 | } | |
| 8133 |
3
1. jj_3R_83 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_83 → NO_COVERAGE 2. jj_3R_83 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_83 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8134 | } | |
| 8135 | ||
| 8136 | final private boolean jj_3R_259() { | |
| 8137 |
5
1. jj_3R_259 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_259 : negated conditional → NO_COVERAGE 3. jj_3R_259 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_259 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_259 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 8138 |
3
1. jj_3R_259 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_259 → NO_COVERAGE 2. jj_3R_259 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_259 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8139 | } | |
| 8140 |
4
1. jj_3R_259 : negated conditional → NO_COVERAGE 2. jj_3R_259 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_258 → NO_COVERAGE 3. jj_3R_259 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_259 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_258()) { |
| 8141 |
3
1. jj_3R_259 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_259 → NO_COVERAGE 2. jj_3R_259 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_259 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8142 | } | |
| 8143 |
3
1. jj_3R_259 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_259 → NO_COVERAGE 2. jj_3R_259 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_259 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8144 | } | |
| 8145 | ||
| 8146 | final private boolean jj_3R_84() { | |
| 8147 |
5
1. jj_3R_84 : Substituted 88 with 89 → NO_COVERAGE 2. jj_3R_84 : negated conditional → NO_COVERAGE 3. jj_3R_84 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_84 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_84 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LT)) { |
| 8148 |
3
1. jj_3R_84 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 2. jj_3R_84 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8149 | } | |
| 8150 |
4
1. jj_3R_84 : negated conditional → NO_COVERAGE 2. jj_3R_84 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_112 → NO_COVERAGE 3. jj_3R_84 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_84 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_112()) { |
| 8151 |
3
1. jj_3R_84 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 2. jj_3R_84 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8152 | } | |
| 8153 | Token xsp; | |
| 8154 | while (true) { | |
| 8155 | xsp = jj_scanpos; | |
| 8156 |
4
1. jj_3R_84 : negated conditional → NO_COVERAGE 2. jj_3R_84 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_113 → NO_COVERAGE 3. jj_3R_84 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_84 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_113()) { |
| 8157 |
1
1. jj_3R_84 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8158 | break; | |
| 8159 | } | |
| 8160 | } | |
| 8161 |
5
1. jj_3R_84 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_84 : negated conditional → NO_COVERAGE 3. jj_3R_84 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_84 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_84 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(GT)) { |
| 8162 |
3
1. jj_3R_84 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 2. jj_3R_84 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8163 | } | |
| 8164 |
3
1. jj_3R_84 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 2. jj_3R_84 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8165 | } | |
| 8166 | ||
| 8167 | final private boolean jj_3R_98() { | |
| 8168 |
3
1. jj_3R_98 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_98 → NO_COVERAGE 2. jj_3R_98 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_98 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8169 | } | |
| 8170 | ||
| 8171 | final private boolean jj_3R_272() { | |
| 8172 |
4
1. jj_3R_272 : negated conditional → NO_COVERAGE 2. jj_3R_272 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_214 → NO_COVERAGE 3. jj_3R_272 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_272 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_214()) { |
| 8173 |
3
1. jj_3R_272 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_272 → NO_COVERAGE 2. jj_3R_272 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_272 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8174 | } | |
| 8175 |
3
1. jj_3R_272 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_272 → NO_COVERAGE 2. jj_3R_272 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_272 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8176 | } | |
| 8177 | ||
| 8178 | final private boolean jj_3R_71() { | |
| 8179 | Token xsp; | |
| 8180 | xsp = jj_scanpos; | |
| 8181 |
2
1. jj_3R_71 : Substituted 1 with 0 → SURVIVED 2. jj_3R_71 : Removed assignment to member variable lookingAhead → SURVIVED |
lookingAhead = true; |
| 8182 |
15
1. jj_3R_71 : Substituted 1 with 0 → SURVIVED 2. jj_3R_71 : Substituted 124 with 125 → SURVIVED 3. jj_3R_71 : Substituted 1 with 0 → SURVIVED 4. jj_3R_71 : Substituted 123 with 124 → SURVIVED 5. jj_3R_71 : Substituted 1 with 0 → SURVIVED 6. jj_3R_71 : Substituted 0 with 1 → SURVIVED 7. jj_3R_71 : negated conditional → SURVIVED 8. jj_3R_71 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → SURVIVED 9. jj_3R_71 : removed conditional - replaced equality check with false → SURVIVED 10. jj_3R_71 : removed conditional - replaced equality check with false → SURVIVED 11. jj_3R_71 : removed conditional - replaced equality check with true → SURVIVED 12. jj_3R_71 : Removed assignment to member variable jj_semLA → SURVIVED 13. jj_3R_71 : negated conditional → KILLED 14. jj_3R_71 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → KILLED 15. jj_3R_71 : removed conditional - replaced equality check with true → KILLED |
jj_semLA = getToken(1).kind == GT && |
| 8183 | ((Token.GTToken) getToken(1)).realKind == RSIGNEDSHIFT; | |
| 8184 |
2
1. jj_3R_71 : Substituted 0 with 1 → SURVIVED 2. jj_3R_71 : Removed assignment to member variable lookingAhead → SURVIVED |
lookingAhead = false; |
| 8185 |
7
1. jj_3R_71 : negated conditional → SURVIVED 2. jj_3R_71 : negated conditional → SURVIVED 3. jj_3R_71 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_97 → SURVIVED 4. jj_3R_71 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_71 : removed conditional - replaced equality check with false → SURVIVED 6. jj_3R_71 : removed conditional - replaced equality check with true → SURVIVED 7. jj_3R_71 : removed conditional - replaced equality check with true → SURVIVED |
if (!jj_semLA || jj_3R_97()) { |
| 8186 |
3
1. jj_3R_71 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_71 → KILLED 2. jj_3R_71 : Substituted 1 with 0 → KILLED 3. jj_3R_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8187 | } | |
| 8188 |
5
1. jj_3R_71 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_71 : negated conditional → NO_COVERAGE 3. jj_3R_71 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_71 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_71 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(GT)) { |
| 8189 |
3
1. jj_3R_71 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_71 → NO_COVERAGE 2. jj_3R_71 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8190 | } | |
| 8191 |
5
1. jj_3R_71 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_71 : negated conditional → NO_COVERAGE 3. jj_3R_71 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_71 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_71 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(GT)) { |
| 8192 |
3
1. jj_3R_71 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_71 → NO_COVERAGE 2. jj_3R_71 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8193 | } | |
| 8194 |
3
1. jj_3R_71 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_71 → NO_COVERAGE 2. jj_3R_71 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8195 | } | |
| 8196 | ||
| 8197 | final private boolean jj_3R_258() { | |
| 8198 |
5
1. jj_3R_258 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_258 : negated conditional → NO_COVERAGE 3. jj_3R_258 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_258 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_258 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 8199 |
3
1. jj_3R_258 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_258 → NO_COVERAGE 2. jj_3R_258 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_258 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8200 | } | |
| 8201 | Token xsp; | |
| 8202 | xsp = jj_scanpos; | |
| 8203 |
4
1. jj_3R_258 : negated conditional → NO_COVERAGE 2. jj_3R_258 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_270 → NO_COVERAGE 3. jj_3R_258 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_258 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_270()) { |
| 8204 |
1
1. jj_3R_258 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8205 | } | |
| 8206 | xsp = jj_scanpos; | |
| 8207 |
4
1. jj_3R_258 : negated conditional → NO_COVERAGE 2. jj_3R_258 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_271 → NO_COVERAGE 3. jj_3R_258 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_258 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_271()) { |
| 8208 |
1
1. jj_3R_258 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8209 | } | |
| 8210 |
3
1. jj_3R_258 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_258 → NO_COVERAGE 2. jj_3R_258 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_258 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8211 | } | |
| 8212 | ||
| 8213 | final private boolean jj_3R_260() { | |
| 8214 |
5
1. jj_3R_260 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_260 : negated conditional → NO_COVERAGE 3. jj_3R_260 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_260 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_260 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8215 |
3
1. jj_3R_260 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_260 → NO_COVERAGE 2. jj_3R_260 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_260 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8216 | } | |
| 8217 | Token xsp; | |
| 8218 | while (true) { | |
| 8219 | xsp = jj_scanpos; | |
| 8220 |
4
1. jj_3R_260 : negated conditional → NO_COVERAGE 2. jj_3R_260 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_272 → NO_COVERAGE 3. jj_3R_260 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_260 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_272()) { |
| 8221 |
1
1. jj_3R_260 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8222 | break; | |
| 8223 | } | |
| 8224 | } | |
| 8225 |
3
1. jj_3R_260 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_260 → NO_COVERAGE 2. jj_3R_260 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_260 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8226 | } | |
| 8227 | ||
| 8228 | final private boolean jj_3R_240() { | |
| 8229 |
5
1. jj_3R_240 : Substituted 79 with 80 → NO_COVERAGE 2. jj_3R_240 : negated conditional → NO_COVERAGE 3. jj_3R_240 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_240 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_240 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACE)) { |
| 8230 |
3
1. jj_3R_240 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_240 → NO_COVERAGE 2. jj_3R_240 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_240 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8231 | } | |
| 8232 |
4
1. jj_3R_240 : negated conditional → NO_COVERAGE 2. jj_3R_240 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_258 → NO_COVERAGE 3. jj_3R_240 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_240 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_258()) { |
| 8233 |
3
1. jj_3R_240 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_240 → NO_COVERAGE 2. jj_3R_240 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_240 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8234 | } | |
| 8235 | Token xsp; | |
| 8236 | while (true) { | |
| 8237 | xsp = jj_scanpos; | |
| 8238 |
4
1. jj_3R_240 : negated conditional → NO_COVERAGE 2. jj_3R_240 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_259 → NO_COVERAGE 3. jj_3R_240 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_240 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_259()) { |
| 8239 |
1
1. jj_3R_240 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8240 | break; | |
| 8241 | } | |
| 8242 | } | |
| 8243 | xsp = jj_scanpos; | |
| 8244 |
4
1. jj_3R_240 : negated conditional → NO_COVERAGE 2. jj_3R_240 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_260 → NO_COVERAGE 3. jj_3R_240 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_240 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_260()) { |
| 8245 |
1
1. jj_3R_240 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8246 | } | |
| 8247 |
5
1. jj_3R_240 : Substituted 80 with 81 → NO_COVERAGE 2. jj_3R_240 : negated conditional → NO_COVERAGE 3. jj_3R_240 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_240 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_240 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACE)) { |
| 8248 |
3
1. jj_3R_240 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_240 → NO_COVERAGE 2. jj_3R_240 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_240 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8249 | } | |
| 8250 |
3
1. jj_3R_240 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_240 → NO_COVERAGE 2. jj_3R_240 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_240 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8251 | } | |
| 8252 | ||
| 8253 | final private boolean jj_3R_72() { | |
| 8254 | Token xsp; | |
| 8255 | xsp = jj_scanpos; | |
| 8256 |
2
1. jj_3R_72 : Substituted 1 with 0 → SURVIVED 2. jj_3R_72 : Removed assignment to member variable lookingAhead → SURVIVED |
lookingAhead = true; |
| 8257 |
15
1. jj_3R_72 : Substituted 1 with 0 → SURVIVED 2. jj_3R_72 : Substituted 124 with 125 → SURVIVED 3. jj_3R_72 : Substituted 1 with 0 → SURVIVED 4. jj_3R_72 : Substituted 122 with 123 → SURVIVED 5. jj_3R_72 : Substituted 1 with 0 → SURVIVED 6. jj_3R_72 : Substituted 0 with 1 → SURVIVED 7. jj_3R_72 : negated conditional → SURVIVED 8. jj_3R_72 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → SURVIVED 9. jj_3R_72 : removed conditional - replaced equality check with false → SURVIVED 10. jj_3R_72 : removed conditional - replaced equality check with false → SURVIVED 11. jj_3R_72 : removed conditional - replaced equality check with true → SURVIVED 12. jj_3R_72 : Removed assignment to member variable jj_semLA → SURVIVED 13. jj_3R_72 : negated conditional → KILLED 14. jj_3R_72 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → KILLED 15. jj_3R_72 : removed conditional - replaced equality check with true → KILLED |
jj_semLA = getToken(1).kind == GT && |
| 8258 | ((Token.GTToken) getToken(1)).realKind == RUNSIGNEDSHIFT; | |
| 8259 |
2
1. jj_3R_72 : Substituted 0 with 1 → KILLED 2. jj_3R_72 : Removed assignment to member variable lookingAhead → KILLED |
lookingAhead = false; |
| 8260 |
7
1. jj_3R_72 : negated conditional → SURVIVED 2. jj_3R_72 : negated conditional → SURVIVED 3. jj_3R_72 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_98 → SURVIVED 4. jj_3R_72 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_72 : removed conditional - replaced equality check with false → SURVIVED 6. jj_3R_72 : removed conditional - replaced equality check with true → SURVIVED 7. jj_3R_72 : removed conditional - replaced equality check with true → SURVIVED |
if (!jj_semLA || jj_3R_98()) { |
| 8261 |
3
1. jj_3R_72 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_72 → KILLED 2. jj_3R_72 : Substituted 1 with 0 → KILLED 3. jj_3R_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8262 | } | |
| 8263 |
5
1. jj_3R_72 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_72 : negated conditional → NO_COVERAGE 3. jj_3R_72 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_72 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_72 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(GT)) { |
| 8264 |
3
1. jj_3R_72 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_72 → NO_COVERAGE 2. jj_3R_72 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8265 | } | |
| 8266 |
5
1. jj_3R_72 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_72 : negated conditional → NO_COVERAGE 3. jj_3R_72 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_72 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_72 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(GT)) { |
| 8267 |
3
1. jj_3R_72 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_72 → NO_COVERAGE 2. jj_3R_72 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8268 | } | |
| 8269 |
5
1. jj_3R_72 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_72 : negated conditional → NO_COVERAGE 3. jj_3R_72 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_72 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_72 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(GT)) { |
| 8270 |
3
1. jj_3R_72 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_72 → NO_COVERAGE 2. jj_3R_72 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8271 | } | |
| 8272 |
3
1. jj_3R_72 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_72 → NO_COVERAGE 2. jj_3R_72 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8273 | } | |
| 8274 | ||
| 8275 | final private boolean jj_3R_239() { | |
| 8276 |
4
1. jj_3R_239 : negated conditional → NO_COVERAGE 2. jj_3R_239 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_257 → NO_COVERAGE 3. jj_3R_239 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_239 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_257()) { |
| 8277 |
3
1. jj_3R_239 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_239 → NO_COVERAGE 2. jj_3R_239 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_239 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8278 | } | |
| 8279 |
3
1. jj_3R_239 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_239 → NO_COVERAGE 2. jj_3R_239 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_239 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8280 | } | |
| 8281 | ||
| 8282 | final private boolean jj_3R_290() { | |
| 8283 |
5
1. jj_3R_290 : Substituted 32 with 33 → NO_COVERAGE 2. jj_3R_290 : negated conditional → NO_COVERAGE 3. jj_3R_290 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_290 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_290 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(FINALLY)) { |
| 8284 |
3
1. jj_3R_290 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_290 → NO_COVERAGE 2. jj_3R_290 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_290 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8285 | } | |
| 8286 |
4
1. jj_3R_290 : negated conditional → NO_COVERAGE 2. jj_3R_290 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 3. jj_3R_290 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_290 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_86()) { |
| 8287 |
3
1. jj_3R_290 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_290 → NO_COVERAGE 2. jj_3R_290 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_290 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8288 | } | |
| 8289 |
3
1. jj_3R_290 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_290 → NO_COVERAGE 2. jj_3R_290 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_290 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8290 | } | |
| 8291 | ||
| 8292 | final private boolean jj_3R_289() { | |
| 8293 |
5
1. jj_3R_289 : Substituted 19 with 20 → NO_COVERAGE 2. jj_3R_289 : negated conditional → NO_COVERAGE 3. jj_3R_289 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_289 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_289 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(CATCH)) { |
| 8294 |
3
1. jj_3R_289 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_289 → NO_COVERAGE 2. jj_3R_289 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_289 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8295 | } | |
| 8296 |
5
1. jj_3R_289 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_289 : negated conditional → NO_COVERAGE 3. jj_3R_289 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_289 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_289 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8297 |
3
1. jj_3R_289 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_289 → NO_COVERAGE 2. jj_3R_289 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_289 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8298 | } | |
| 8299 |
4
1. jj_3R_289 : negated conditional → NO_COVERAGE 2. jj_3R_289 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_273 → NO_COVERAGE 3. jj_3R_289 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_289 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_273()) { |
| 8300 |
3
1. jj_3R_289 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_289 → NO_COVERAGE 2. jj_3R_289 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_289 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8301 | } | |
| 8302 |
5
1. jj_3R_289 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_289 : negated conditional → NO_COVERAGE 3. jj_3R_289 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_289 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_289 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 8303 |
3
1. jj_3R_289 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_289 → NO_COVERAGE 2. jj_3R_289 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_289 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8304 | } | |
| 8305 |
4
1. jj_3R_289 : negated conditional → NO_COVERAGE 2. jj_3R_289 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 3. jj_3R_289 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_289 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_86()) { |
| 8306 |
3
1. jj_3R_289 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_289 → NO_COVERAGE 2. jj_3R_289 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_289 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8307 | } | |
| 8308 |
3
1. jj_3R_289 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_289 → NO_COVERAGE 2. jj_3R_289 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_289 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8309 | } | |
| 8310 | ||
| 8311 | final private boolean jj_3R_230() { | |
| 8312 |
5
1. jj_3R_230 : Substituted 28 with 29 → NO_COVERAGE 2. jj_3R_230 : negated conditional → NO_COVERAGE 3. jj_3R_230 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_230 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_230 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(ENUM)) { |
| 8313 |
3
1. jj_3R_230 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_230 → NO_COVERAGE 2. jj_3R_230 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_230 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8314 | } | |
| 8315 |
5
1. jj_3R_230 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_230 : negated conditional → NO_COVERAGE 3. jj_3R_230 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_230 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_230 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 8316 |
3
1. jj_3R_230 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_230 → NO_COVERAGE 2. jj_3R_230 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_230 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8317 | } | |
| 8318 | Token xsp; | |
| 8319 | xsp = jj_scanpos; | |
| 8320 |
4
1. jj_3R_230 : negated conditional → NO_COVERAGE 2. jj_3R_230 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_239 → NO_COVERAGE 3. jj_3R_230 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_230 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_239()) { |
| 8321 |
1
1. jj_3R_230 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8322 | } | |
| 8323 |
4
1. jj_3R_230 : negated conditional → NO_COVERAGE 2. jj_3R_230 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_240 → NO_COVERAGE 3. jj_3R_230 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_230 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_240()) { |
| 8324 |
3
1. jj_3R_230 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_230 → NO_COVERAGE 2. jj_3R_230 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_230 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8325 | } | |
| 8326 |
3
1. jj_3R_230 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_230 → NO_COVERAGE 2. jj_3R_230 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_230 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8327 | } | |
| 8328 | ||
| 8329 | final private boolean jj_3R_184() { | |
| 8330 |
5
1. jj_3R_184 : Substituted 62 with 63 → NO_COVERAGE 2. jj_3R_184 : negated conditional → NO_COVERAGE 3. jj_3R_184 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_184 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_184 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(TRY)) { |
| 8331 |
3
1. jj_3R_184 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_184 → NO_COVERAGE 2. jj_3R_184 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_184 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8332 | } | |
| 8333 |
4
1. jj_3R_184 : negated conditional → NO_COVERAGE 2. jj_3R_184 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 3. jj_3R_184 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_184 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_86()) { |
| 8334 |
3
1. jj_3R_184 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_184 → NO_COVERAGE 2. jj_3R_184 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_184 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8335 | } | |
| 8336 | Token xsp; | |
| 8337 | while (true) { | |
| 8338 | xsp = jj_scanpos; | |
| 8339 |
4
1. jj_3R_184 : negated conditional → NO_COVERAGE 2. jj_3R_184 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_289 → NO_COVERAGE 3. jj_3R_184 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_184 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_289()) { |
| 8340 |
1
1. jj_3R_184 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8341 | break; | |
| 8342 | } | |
| 8343 | } | |
| 8344 | xsp = jj_scanpos; | |
| 8345 |
4
1. jj_3R_184 : negated conditional → NO_COVERAGE 2. jj_3R_184 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_290 → NO_COVERAGE 3. jj_3R_184 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_184 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_290()) { |
| 8346 |
1
1. jj_3R_184 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8347 | } | |
| 8348 |
3
1. jj_3R_184 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_184 → NO_COVERAGE 2. jj_3R_184 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_184 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8349 | } | |
| 8350 | ||
| 8351 | final private boolean jj_3R_269() { | |
| 8352 |
5
1. jj_3R_269 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_269 : negated conditional → NO_COVERAGE 3. jj_3R_269 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_269 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_269 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 8353 |
3
1. jj_3R_269 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_269 → NO_COVERAGE 2. jj_3R_269 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_269 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8354 | } | |
| 8355 |
4
1. jj_3R_269 : negated conditional → NO_COVERAGE 2. jj_3R_269 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → NO_COVERAGE 3. jj_3R_269 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_269 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_123()) { |
| 8356 |
3
1. jj_3R_269 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_269 → NO_COVERAGE 2. jj_3R_269 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_269 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8357 | } | |
| 8358 |
3
1. jj_3R_269 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_269 → NO_COVERAGE 2. jj_3R_269 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_269 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8359 | } | |
| 8360 | ||
| 8361 | final private boolean jj_3R_257() { | |
| 8362 |
5
1. jj_3R_257 : Substituted 37 with 38 → NO_COVERAGE 2. jj_3R_257 : negated conditional → NO_COVERAGE 3. jj_3R_257 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_257 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_257 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IMPLEMENTS)) { |
| 8363 |
3
1. jj_3R_257 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_257 → NO_COVERAGE 2. jj_3R_257 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_257 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8364 | } | |
| 8365 |
4
1. jj_3R_257 : negated conditional → NO_COVERAGE 2. jj_3R_257 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → NO_COVERAGE 3. jj_3R_257 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_257 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_123()) { |
| 8366 |
3
1. jj_3R_257 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_257 → NO_COVERAGE 2. jj_3R_257 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_257 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8367 | } | |
| 8368 | Token xsp; | |
| 8369 | while (true) { | |
| 8370 | xsp = jj_scanpos; | |
| 8371 |
4
1. jj_3R_257 : negated conditional → NO_COVERAGE 2. jj_3R_257 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_269 → NO_COVERAGE 3. jj_3R_257 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_257 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_269()) { |
| 8372 |
1
1. jj_3R_257 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8373 | break; | |
| 8374 | } | |
| 8375 | } | |
| 8376 |
3
1. jj_3R_257 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_257 → NO_COVERAGE 2. jj_3R_257 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_257 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8377 | } | |
| 8378 | ||
| 8379 | final private boolean jj_3R_183() { | |
| 8380 |
5
1. jj_3R_183 : Substituted 56 with 57 → NO_COVERAGE 2. jj_3R_183 : negated conditional → NO_COVERAGE 3. jj_3R_183 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_183 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_183 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SYNCHRONIZED)) { |
| 8381 |
3
1. jj_3R_183 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_183 → NO_COVERAGE 2. jj_3R_183 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_183 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8382 | } | |
| 8383 |
5
1. jj_3R_183 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_183 : negated conditional → NO_COVERAGE 3. jj_3R_183 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_183 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_183 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8384 |
3
1. jj_3R_183 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_183 → NO_COVERAGE 2. jj_3R_183 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_183 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8385 | } | |
| 8386 |
4
1. jj_3R_183 : negated conditional → NO_COVERAGE 2. jj_3R_183 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_183 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_183 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8387 |
3
1. jj_3R_183 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_183 → NO_COVERAGE 2. jj_3R_183 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_183 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8388 | } | |
| 8389 |
5
1. jj_3R_183 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_183 : negated conditional → NO_COVERAGE 3. jj_3R_183 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_183 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_183 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 8390 |
3
1. jj_3R_183 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_183 → NO_COVERAGE 2. jj_3R_183 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_183 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8391 | } | |
| 8392 |
4
1. jj_3R_183 : negated conditional → NO_COVERAGE 2. jj_3R_183 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 3. jj_3R_183 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_183 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_86()) { |
| 8393 |
3
1. jj_3R_183 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_183 → NO_COVERAGE 2. jj_3R_183 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_183 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8394 | } | |
| 8395 |
3
1. jj_3R_183 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_183 → NO_COVERAGE 2. jj_3R_183 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_183 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8396 | } | |
| 8397 | ||
| 8398 | final private boolean jj_3R_288() { | |
| 8399 |
4
1. jj_3R_288 : negated conditional → NO_COVERAGE 2. jj_3R_288 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_288 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_288 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8400 |
3
1. jj_3R_288 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_288 → NO_COVERAGE 2. jj_3R_288 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_288 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8401 | } | |
| 8402 |
3
1. jj_3R_288 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_288 → NO_COVERAGE 2. jj_3R_288 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_288 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8403 | } | |
| 8404 | ||
| 8405 | final private boolean jj_3R_268() { | |
| 8406 |
5
1. jj_3R_268 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_268 : negated conditional → NO_COVERAGE 3. jj_3R_268 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_268 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_268 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 8407 |
3
1. jj_3R_268 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_268 → NO_COVERAGE 2. jj_3R_268 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_268 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8408 | } | |
| 8409 |
4
1. jj_3R_268 : negated conditional → NO_COVERAGE 2. jj_3R_268 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → NO_COVERAGE 3. jj_3R_268 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_268 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_123()) { |
| 8410 |
3
1. jj_3R_268 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_268 → NO_COVERAGE 2. jj_3R_268 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_268 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8411 | } | |
| 8412 |
3
1. jj_3R_268 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_268 → NO_COVERAGE 2. jj_3R_268 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_268 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8413 | } | |
| 8414 | ||
| 8415 | final private boolean jj_3R_182() { | |
| 8416 |
5
1. jj_3R_182 : Substituted 58 with 59 → NO_COVERAGE 2. jj_3R_182 : negated conditional → NO_COVERAGE 3. jj_3R_182 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_182 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_182 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(THROW)) { |
| 8417 |
3
1. jj_3R_182 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_182 → NO_COVERAGE 2. jj_3R_182 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8418 | } | |
| 8419 |
4
1. jj_3R_182 : negated conditional → NO_COVERAGE 2. jj_3R_182 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_182 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_182 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8420 |
3
1. jj_3R_182 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_182 → NO_COVERAGE 2. jj_3R_182 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8421 | } | |
| 8422 |
5
1. jj_3R_182 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_182 : negated conditional → NO_COVERAGE 3. jj_3R_182 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_182 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_182 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8423 |
3
1. jj_3R_182 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_182 → NO_COVERAGE 2. jj_3R_182 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8424 | } | |
| 8425 |
3
1. jj_3R_182 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_182 → NO_COVERAGE 2. jj_3R_182 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8426 | } | |
| 8427 | ||
| 8428 | final private boolean jj_3R_256() { | |
| 8429 |
5
1. jj_3R_256 : Substituted 29 with 30 → NO_COVERAGE 2. jj_3R_256 : negated conditional → NO_COVERAGE 3. jj_3R_256 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_256 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_256 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(EXTENDS)) { |
| 8430 |
3
1. jj_3R_256 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_256 → NO_COVERAGE 2. jj_3R_256 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_256 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8431 | } | |
| 8432 |
4
1. jj_3R_256 : negated conditional → NO_COVERAGE 2. jj_3R_256 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → NO_COVERAGE 3. jj_3R_256 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_256 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_123()) { |
| 8433 |
3
1. jj_3R_256 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_256 → NO_COVERAGE 2. jj_3R_256 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_256 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8434 | } | |
| 8435 | Token xsp; | |
| 8436 | while (true) { | |
| 8437 | xsp = jj_scanpos; | |
| 8438 |
4
1. jj_3R_256 : negated conditional → NO_COVERAGE 2. jj_3R_256 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_268 → NO_COVERAGE 3. jj_3R_256 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_256 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_268()) { |
| 8439 |
1
1. jj_3R_256 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8440 | break; | |
| 8441 | } | |
| 8442 | } | |
| 8443 |
3
1. jj_3R_256 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_256 → NO_COVERAGE 2. jj_3R_256 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_256 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8444 | } | |
| 8445 | ||
| 8446 | final private boolean jj_3R_298() { | |
| 8447 |
4
1. jj_3R_298 : negated conditional → NO_COVERAGE 2. jj_3R_298 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_303 → NO_COVERAGE 3. jj_3R_298 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_298 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_303()) { |
| 8448 |
3
1. jj_3R_298 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_298 → NO_COVERAGE 2. jj_3R_298 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_298 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8449 | } | |
| 8450 |
3
1. jj_3R_298 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_298 → NO_COVERAGE 2. jj_3R_298 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_298 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8451 | } | |
| 8452 | ||
| 8453 | final private boolean jj_3R_167() { | |
| 8454 |
5
1. jj_3R_167 : Substituted 41 with 42 → NO_COVERAGE 2. jj_3R_167 : negated conditional → NO_COVERAGE 3. jj_3R_167 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_167 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_167 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(INTERFACE)) { |
| 8455 |
3
1. jj_3R_167 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_167 → NO_COVERAGE 2. jj_3R_167 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_167 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8456 | } | |
| 8457 |
3
1. jj_3R_167 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_167 → NO_COVERAGE 2. jj_3R_167 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_167 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8458 | } | |
| 8459 | ||
| 8460 | final private boolean jj_3R_307() { | |
| 8461 |
5
1. jj_3R_307 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_307 : negated conditional → NO_COVERAGE 3. jj_3R_307 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_307 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_307 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 8462 |
3
1. jj_3R_307 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_307 → NO_COVERAGE 2. jj_3R_307 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_307 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8463 | } | |
| 8464 |
4
1. jj_3R_307 : negated conditional → NO_COVERAGE 2. jj_3R_307 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_173 → NO_COVERAGE 3. jj_3R_307 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_307 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_173()) { |
| 8465 |
3
1. jj_3R_307 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_307 → NO_COVERAGE 2. jj_3R_307 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_307 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8466 | } | |
| 8467 |
3
1. jj_3R_307 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_307 → NO_COVERAGE 2. jj_3R_307 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_307 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8468 | } | |
| 8469 | ||
| 8470 | final private boolean jj_3R_181() { | |
| 8471 |
5
1. jj_3R_181 : Substituted 50 with 51 → NO_COVERAGE 2. jj_3R_181 : negated conditional → NO_COVERAGE 3. jj_3R_181 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_181 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_181 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RETURN)) { |
| 8472 |
3
1. jj_3R_181 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_181 → NO_COVERAGE 2. jj_3R_181 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_181 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8473 | } | |
| 8474 | Token xsp; | |
| 8475 | xsp = jj_scanpos; | |
| 8476 |
4
1. jj_3R_181 : negated conditional → NO_COVERAGE 2. jj_3R_181 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_288 → NO_COVERAGE 3. jj_3R_181 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_181 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_288()) { |
| 8477 |
1
1. jj_3R_181 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8478 | } | |
| 8479 |
5
1. jj_3R_181 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_181 : negated conditional → NO_COVERAGE 3. jj_3R_181 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_181 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_181 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8480 |
3
1. jj_3R_181 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_181 → NO_COVERAGE 2. jj_3R_181 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_181 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8481 | } | |
| 8482 |
3
1. jj_3R_181 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_181 → NO_COVERAGE 2. jj_3R_181 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_181 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8483 | } | |
| 8484 | ||
| 8485 | final private boolean jj_3R_238() { | |
| 8486 |
4
1. jj_3R_238 : negated conditional → NO_COVERAGE 2. jj_3R_238 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_257 → NO_COVERAGE 3. jj_3R_238 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_238 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_257()) { |
| 8487 |
3
1. jj_3R_238 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_238 → NO_COVERAGE 2. jj_3R_238 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_238 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8488 | } | |
| 8489 |
3
1. jj_3R_238 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_238 → NO_COVERAGE 2. jj_3R_238 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_238 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8490 | } | |
| 8491 | ||
| 8492 | final private boolean jj_3R_237() { | |
| 8493 |
4
1. jj_3R_237 : negated conditional → NO_COVERAGE 2. jj_3R_237 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_256 → NO_COVERAGE 3. jj_3R_237 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_237 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_256()) { |
| 8494 |
3
1. jj_3R_237 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_237 → NO_COVERAGE 2. jj_3R_237 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_237 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8495 | } | |
| 8496 |
3
1. jj_3R_237 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_237 → NO_COVERAGE 2. jj_3R_237 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_237 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8497 | } | |
| 8498 | ||
| 8499 | final private boolean jj_3R_236() { | |
| 8500 |
4
1. jj_3R_236 : negated conditional → NO_COVERAGE 2. jj_3R_236 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_84 → NO_COVERAGE 3. jj_3R_236 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_236 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_84()) { |
| 8501 |
3
1. jj_3R_236 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_236 → NO_COVERAGE 2. jj_3R_236 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_236 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8502 | } | |
| 8503 |
3
1. jj_3R_236 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_236 → NO_COVERAGE 2. jj_3R_236 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_236 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8504 | } | |
| 8505 | ||
| 8506 | final private boolean jj_3R_180() { | |
| 8507 |
5
1. jj_3R_180 : Substituted 23 with 24 → NO_COVERAGE 2. jj_3R_180 : negated conditional → NO_COVERAGE 3. jj_3R_180 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_180 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_180 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(CONTINUE)) { |
| 8508 |
3
1. jj_3R_180 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_180 → NO_COVERAGE 2. jj_3R_180 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_180 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8509 | } | |
| 8510 | Token xsp; | |
| 8511 | xsp = jj_scanpos; | |
| 8512 |
5
1. jj_3R_180 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_180 : negated conditional → NO_COVERAGE 3. jj_3R_180 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_180 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_180 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(74)) { |
| 8513 |
1
1. jj_3R_180 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8514 | } | |
| 8515 |
5
1. jj_3R_180 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_180 : negated conditional → NO_COVERAGE 3. jj_3R_180 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_180 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_180 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8516 |
3
1. jj_3R_180 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_180 → NO_COVERAGE 2. jj_3R_180 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_180 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8517 | } | |
| 8518 |
3
1. jj_3R_180 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_180 → NO_COVERAGE 2. jj_3R_180 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_180 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8519 | } | |
| 8520 | ||
| 8521 | final private boolean jj_3R_147() { | |
| 8522 | Token xsp; | |
| 8523 | xsp = jj_scanpos; | |
| 8524 |
5
1. jj_3R_147 : Substituted 21 with 22 → NO_COVERAGE 2. jj_3R_147 : negated conditional → NO_COVERAGE 3. jj_3R_147 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_147 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_147 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(21)) { |
| 8525 |
1
1. jj_3R_147 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8526 |
4
1. jj_3R_147 : negated conditional → NO_COVERAGE 2. jj_3R_147 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_167 → NO_COVERAGE 3. jj_3R_147 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_147 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_167()) { |
| 8527 |
3
1. jj_3R_147 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_147 → NO_COVERAGE 2. jj_3R_147 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8528 | } | |
| 8529 | } | |
| 8530 |
5
1. jj_3R_147 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_147 : negated conditional → NO_COVERAGE 3. jj_3R_147 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_147 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_147 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 8531 |
3
1. jj_3R_147 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_147 → NO_COVERAGE 2. jj_3R_147 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8532 | } | |
| 8533 | xsp = jj_scanpos; | |
| 8534 |
4
1. jj_3R_147 : negated conditional → NO_COVERAGE 2. jj_3R_147 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_236 → NO_COVERAGE 3. jj_3R_147 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_147 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_236()) { |
| 8535 |
1
1. jj_3R_147 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8536 | } | |
| 8537 | xsp = jj_scanpos; | |
| 8538 |
4
1. jj_3R_147 : negated conditional → NO_COVERAGE 2. jj_3R_147 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_237 → NO_COVERAGE 3. jj_3R_147 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_147 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_237()) { |
| 8539 |
1
1. jj_3R_147 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8540 | } | |
| 8541 | xsp = jj_scanpos; | |
| 8542 |
4
1. jj_3R_147 : negated conditional → NO_COVERAGE 2. jj_3R_147 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_238 → NO_COVERAGE 3. jj_3R_147 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_147 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_238()) { |
| 8543 |
1
1. jj_3R_147 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8544 | } | |
| 8545 |
4
1. jj_3R_147 : negated conditional → NO_COVERAGE 2. jj_3R_147 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_205 → NO_COVERAGE 3. jj_3R_147 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_147 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_205()) { |
| 8546 |
3
1. jj_3R_147 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_147 → NO_COVERAGE 2. jj_3R_147 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8547 | } | |
| 8548 |
3
1. jj_3R_147 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_147 → NO_COVERAGE 2. jj_3R_147 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8549 | } | |
| 8550 | ||
| 8551 | final private boolean jj_3R_179() { | |
| 8552 |
5
1. jj_3R_179 : Substituted 16 with 17 → NO_COVERAGE 2. jj_3R_179 : negated conditional → NO_COVERAGE 3. jj_3R_179 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_179 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_179 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(BREAK)) { |
| 8553 |
3
1. jj_3R_179 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_179 → NO_COVERAGE 2. jj_3R_179 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_179 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8554 | } | |
| 8555 | Token xsp; | |
| 8556 | xsp = jj_scanpos; | |
| 8557 |
5
1. jj_3R_179 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_179 : negated conditional → NO_COVERAGE 3. jj_3R_179 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_179 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_179 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(74)) { |
| 8558 |
1
1. jj_3R_179 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8559 | } | |
| 8560 |
5
1. jj_3R_179 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_179 : negated conditional → NO_COVERAGE 3. jj_3R_179 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_179 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_179 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8561 |
3
1. jj_3R_179 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_179 → NO_COVERAGE 2. jj_3R_179 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_179 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8562 | } | |
| 8563 |
3
1. jj_3R_179 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_179 → NO_COVERAGE 2. jj_3R_179 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_179 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8564 | } | |
| 8565 | ||
| 8566 | final private boolean jj_3R_303() { | |
| 8567 |
4
1. jj_3R_303 : negated conditional → NO_COVERAGE 2. jj_3R_303 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_306 → NO_COVERAGE 3. jj_3R_303 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_303 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_306()) { |
| 8568 |
3
1. jj_3R_303 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_303 → NO_COVERAGE 2. jj_3R_303 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_303 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8569 | } | |
| 8570 |
3
1. jj_3R_303 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_303 → NO_COVERAGE 2. jj_3R_303 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_303 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8571 | } | |
| 8572 | ||
| 8573 | final private boolean jj_3R_297() { | |
| 8574 |
4
1. jj_3R_297 : negated conditional → NO_COVERAGE 2. jj_3R_297 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_297 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_297 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8575 |
3
1. jj_3R_297 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_297 → NO_COVERAGE 2. jj_3R_297 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_297 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8576 | } | |
| 8577 |
3
1. jj_3R_297 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_297 → NO_COVERAGE 2. jj_3R_297 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_297 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8578 | } | |
| 8579 | ||
| 8580 | final private boolean jj_3_36() { | |
| 8581 | Token xsp; | |
| 8582 | xsp = jj_scanpos; | |
| 8583 |
5
1. jj_3_36 : Substituted 31 with 32 → NO_COVERAGE 2. jj_3_36 : negated conditional → NO_COVERAGE 3. jj_3_36 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_36 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_36 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(31)) { |
| 8584 |
1
1. jj_3_36 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8585 | } | |
| 8586 |
4
1. jj_3_36 : negated conditional → NO_COVERAGE 2. jj_3_36 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3_36 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_36 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 8587 |
3
1. jj_3_36 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_36 → NO_COVERAGE 2. jj_3_36 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8588 | } | |
| 8589 |
5
1. jj_3_36 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3_36 : negated conditional → NO_COVERAGE 3. jj_3_36 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_36 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_36 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 8590 |
3
1. jj_3_36 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_36 → NO_COVERAGE 2. jj_3_36 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8591 | } | |
| 8592 |
3
1. jj_3_36 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_36 → NO_COVERAGE 2. jj_3_36 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8593 | } | |
| 8594 | ||
| 8595 | final private boolean jj_3R_306() { | |
| 8596 |
4
1. jj_3R_306 : negated conditional → NO_COVERAGE 2. jj_3R_306 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_173 → NO_COVERAGE 3. jj_3R_306 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_306 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_173()) { |
| 8597 |
3
1. jj_3R_306 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_306 → NO_COVERAGE 2. jj_3R_306 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_306 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8598 | } | |
| 8599 | Token xsp; | |
| 8600 | while (true) { | |
| 8601 | xsp = jj_scanpos; | |
| 8602 |
4
1. jj_3R_306 : negated conditional → NO_COVERAGE 2. jj_3R_306 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_307 → NO_COVERAGE 3. jj_3R_306 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_306 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_307()) { |
| 8603 |
1
1. jj_3R_306 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8604 | break; | |
| 8605 | } | |
| 8606 | } | |
| 8607 |
3
1. jj_3R_306 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_306 → NO_COVERAGE 2. jj_3R_306 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_306 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8608 | } | |
| 8609 | ||
| 8610 | final private boolean jj_3R_285() { | |
| 8611 |
5
1. jj_3R_285 : Substituted 27 with 28 → NO_COVERAGE 2. jj_3R_285 : negated conditional → NO_COVERAGE 3. jj_3R_285 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_285 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_285 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(ELSE)) { |
| 8612 |
3
1. jj_3R_285 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_285 → NO_COVERAGE 2. jj_3R_285 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_285 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8613 | } | |
| 8614 |
4
1. jj_3R_285 : negated conditional → NO_COVERAGE 2. jj_3R_285 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 3. jj_3R_285 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_285 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_146()) { |
| 8615 |
3
1. jj_3R_285 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_285 → NO_COVERAGE 2. jj_3R_285 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_285 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8616 | } | |
| 8617 |
3
1. jj_3R_285 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_285 → NO_COVERAGE 2. jj_3R_285 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_285 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8618 | } | |
| 8619 | ||
| 8620 | final private boolean jj_3R_305() { | |
| 8621 |
4
1. jj_3R_305 : negated conditional → NO_COVERAGE 2. jj_3R_305 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_306 → NO_COVERAGE 3. jj_3R_305 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_305 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_306()) { |
| 8622 |
3
1. jj_3R_305 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_305 → NO_COVERAGE 2. jj_3R_305 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_305 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8623 | } | |
| 8624 |
3
1. jj_3R_305 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_305 → NO_COVERAGE 2. jj_3R_305 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_305 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8625 | } | |
| 8626 | ||
| 8627 | final private boolean jj_3_35() { | |
| 8628 |
4
1. jj_3_35 : negated conditional → NO_COVERAGE 2. jj_3_35 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3_35 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_35 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 8629 |
3
1. jj_3_35 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_35 → NO_COVERAGE 2. jj_3_35 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8630 | } | |
| 8631 |
5
1. jj_3_35 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3_35 : negated conditional → NO_COVERAGE 3. jj_3_35 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_35 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_35 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 8632 |
3
1. jj_3_35 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_35 → NO_COVERAGE 2. jj_3_35 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8633 | } | |
| 8634 |
5
1. jj_3_35 : Substituted 92 with 93 → NO_COVERAGE 2. jj_3_35 : negated conditional → NO_COVERAGE 3. jj_3_35 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_35 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_35 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COLON)) { |
| 8635 |
3
1. jj_3_35 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_35 → NO_COVERAGE 2. jj_3_35 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8636 | } | |
| 8637 |
3
1. jj_3_35 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_35 → NO_COVERAGE 2. jj_3_35 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8638 | } | |
| 8639 | ||
| 8640 | final private boolean jj_3R_304() { | |
| 8641 |
4
1. jj_3R_304 : negated conditional → NO_COVERAGE 2. jj_3R_304 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_145 → NO_COVERAGE 3. jj_3R_304 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_304 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_145()) { |
| 8642 |
3
1. jj_3R_304 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_304 → NO_COVERAGE 2. jj_3R_304 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_304 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8643 | } | |
| 8644 |
3
1. jj_3R_304 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_304 → NO_COVERAGE 2. jj_3R_304 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_304 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8645 | } | |
| 8646 | ||
| 8647 | final private boolean jj_3R_302() { | |
| 8648 | Token xsp; | |
| 8649 | xsp = jj_scanpos; | |
| 8650 |
4
1. jj_3R_302 : negated conditional → NO_COVERAGE 2. jj_3R_302 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_304 → NO_COVERAGE 3. jj_3R_302 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_302 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_304()) { |
| 8651 |
1
1. jj_3R_302 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8652 |
4
1. jj_3R_302 : negated conditional → NO_COVERAGE 2. jj_3R_302 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_305 → NO_COVERAGE 3. jj_3R_302 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_302 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_305()) { |
| 8653 |
3
1. jj_3R_302 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_302 → NO_COVERAGE 2. jj_3R_302 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_302 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8654 | } | |
| 8655 | } | |
| 8656 |
3
1. jj_3R_302 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_302 → NO_COVERAGE 2. jj_3R_302 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_302 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8657 | } | |
| 8658 | ||
| 8659 | final private boolean jj_3R_296() { | |
| 8660 |
4
1. jj_3R_296 : negated conditional → NO_COVERAGE 2. jj_3R_296 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_302 → NO_COVERAGE 3. jj_3R_296 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_296 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_302()) { |
| 8661 |
3
1. jj_3R_296 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_296 → NO_COVERAGE 2. jj_3R_296 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_296 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8662 | } | |
| 8663 |
3
1. jj_3R_296 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_296 → NO_COVERAGE 2. jj_3R_296 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_296 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8664 | } | |
| 8665 | ||
| 8666 | final private boolean jj_3R_287() { | |
| 8667 | Token xsp; | |
| 8668 | xsp = jj_scanpos; | |
| 8669 |
4
1. jj_3R_287 : negated conditional → NO_COVERAGE 2. jj_3R_287 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_296 → NO_COVERAGE 3. jj_3R_287 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_287 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_296()) { |
| 8670 |
1
1. jj_3R_287 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8671 | } | |
| 8672 |
5
1. jj_3R_287 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_287 : negated conditional → NO_COVERAGE 3. jj_3R_287 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_287 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_287 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8673 |
3
1. jj_3R_287 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_287 → NO_COVERAGE 2. jj_3R_287 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_287 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8674 | } | |
| 8675 | xsp = jj_scanpos; | |
| 8676 |
4
1. jj_3R_287 : negated conditional → NO_COVERAGE 2. jj_3R_287 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_297 → NO_COVERAGE 3. jj_3R_287 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_287 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_297()) { |
| 8677 |
1
1. jj_3R_287 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8678 | } | |
| 8679 |
5
1. jj_3R_287 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_287 : negated conditional → NO_COVERAGE 3. jj_3R_287 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_287 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_287 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8680 |
3
1. jj_3R_287 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_287 → NO_COVERAGE 2. jj_3R_287 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_287 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8681 | } | |
| 8682 | xsp = jj_scanpos; | |
| 8683 |
4
1. jj_3R_287 : negated conditional → NO_COVERAGE 2. jj_3R_287 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_298 → NO_COVERAGE 3. jj_3R_287 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_287 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_298()) { |
| 8684 |
1
1. jj_3R_287 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8685 | } | |
| 8686 |
3
1. jj_3R_287 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_287 → NO_COVERAGE 2. jj_3R_287 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_287 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8687 | } | |
| 8688 | ||
| 8689 | final private boolean jj_3R_286() { | |
| 8690 |
4
1. jj_3R_286 : negated conditional → NO_COVERAGE 2. jj_3R_286 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3R_286 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_286 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 8691 |
3
1. jj_3R_286 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_286 → NO_COVERAGE 2. jj_3R_286 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_286 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8692 | } | |
| 8693 |
5
1. jj_3R_286 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_286 : negated conditional → NO_COVERAGE 3. jj_3R_286 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_286 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_286 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 8694 |
3
1. jj_3R_286 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_286 → NO_COVERAGE 2. jj_3R_286 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_286 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8695 | } | |
| 8696 |
5
1. jj_3R_286 : Substituted 92 with 93 → NO_COVERAGE 2. jj_3R_286 : negated conditional → NO_COVERAGE 3. jj_3R_286 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_286 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_286 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COLON)) { |
| 8697 |
3
1. jj_3R_286 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_286 → NO_COVERAGE 2. jj_3R_286 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_286 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8698 | } | |
| 8699 |
4
1. jj_3R_286 : negated conditional → NO_COVERAGE 2. jj_3R_286 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_286 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_286 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8700 |
3
1. jj_3R_286 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_286 → NO_COVERAGE 2. jj_3R_286 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_286 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8701 | } | |
| 8702 |
3
1. jj_3R_286 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_286 → NO_COVERAGE 2. jj_3R_286 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_286 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8703 | } | |
| 8704 | ||
| 8705 | final private boolean jj_3R_58() { | |
| 8706 |
4
1. jj_3R_58 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_58 : negated conditional → KILLED 3. jj_3R_58 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_83 → KILLED 4. jj_3R_58 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_83()) { |
| 8707 |
3
1. jj_3R_58 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_58 → KILLED 2. jj_3R_58 : Substituted 1 with 0 → KILLED 3. jj_3R_58 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8708 | } | |
| 8709 |
3
1. jj_3R_58 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_58 → NO_COVERAGE 2. jj_3R_58 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_58 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8710 | } | |
| 8711 | ||
| 8712 | final private boolean jj_3R_57() { | |
| 8713 |
5
1. jj_3R_57 : Substituted 53 with 54 → SURVIVED 2. jj_3R_57 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_57 : negated conditional → KILLED 4. jj_3R_57 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_57 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(STRICTFP)) { |
| 8714 |
3
1. jj_3R_57 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_57 → KILLED 2. jj_3R_57 : Substituted 1 with 0 → KILLED 3. jj_3R_57 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8715 | } | |
| 8716 |
3
1. jj_3R_57 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_57 → NO_COVERAGE 2. jj_3R_57 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_57 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8717 | } | |
| 8718 | ||
| 8719 | final private boolean jj_3R_56() { | |
| 8720 |
5
1. jj_3R_56 : Substituted 64 with 65 → SURVIVED 2. jj_3R_56 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_56 : negated conditional → KILLED 4. jj_3R_56 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_56 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(VOLATILE)) { |
| 8721 |
3
1. jj_3R_56 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_56 → KILLED 2. jj_3R_56 : Substituted 1 with 0 → KILLED 3. jj_3R_56 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8722 | } | |
| 8723 |
3
1. jj_3R_56 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_56 → NO_COVERAGE 2. jj_3R_56 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_56 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8724 | } | |
| 8725 | ||
| 8726 | final private boolean jj_3R_178() { | |
| 8727 |
5
1. jj_3R_178 : Substituted 34 with 35 → NO_COVERAGE 2. jj_3R_178 : negated conditional → NO_COVERAGE 3. jj_3R_178 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_178 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_178 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(FOR)) { |
| 8728 |
3
1. jj_3R_178 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_178 → NO_COVERAGE 2. jj_3R_178 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8729 | } | |
| 8730 |
5
1. jj_3R_178 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_178 : negated conditional → NO_COVERAGE 3. jj_3R_178 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_178 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_178 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8731 |
3
1. jj_3R_178 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_178 → NO_COVERAGE 2. jj_3R_178 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8732 | } | |
| 8733 | Token xsp; | |
| 8734 | xsp = jj_scanpos; | |
| 8735 |
4
1. jj_3R_178 : negated conditional → NO_COVERAGE 2. jj_3R_178 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_286 → NO_COVERAGE 3. jj_3R_178 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_178 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_286()) { |
| 8736 |
1
1. jj_3R_178 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8737 |
4
1. jj_3R_178 : negated conditional → NO_COVERAGE 2. jj_3R_178 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_287 → NO_COVERAGE 3. jj_3R_178 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_178 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_287()) { |
| 8738 |
3
1. jj_3R_178 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_178 → NO_COVERAGE 2. jj_3R_178 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8739 | } | |
| 8740 | } | |
| 8741 |
5
1. jj_3R_178 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_178 : negated conditional → NO_COVERAGE 3. jj_3R_178 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_178 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_178 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 8742 |
3
1. jj_3R_178 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_178 → NO_COVERAGE 2. jj_3R_178 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8743 | } | |
| 8744 |
4
1. jj_3R_178 : negated conditional → NO_COVERAGE 2. jj_3R_178 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 3. jj_3R_178 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_178 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_146()) { |
| 8745 |
3
1. jj_3R_178 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_178 → NO_COVERAGE 2. jj_3R_178 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8746 | } | |
| 8747 |
3
1. jj_3R_178 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_178 → NO_COVERAGE 2. jj_3R_178 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8748 | } | |
| 8749 | ||
| 8750 | final private boolean jj_3R_55() { | |
| 8751 |
5
1. jj_3R_55 : Substituted 60 with 61 → SURVIVED 2. jj_3R_55 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_55 : negated conditional → KILLED 4. jj_3R_55 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_55 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(TRANSIENT)) { |
| 8752 |
3
1. jj_3R_55 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_55 → KILLED 2. jj_3R_55 : Substituted 1 with 0 → KILLED 3. jj_3R_55 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8753 | } | |
| 8754 |
3
1. jj_3R_55 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_55 → NO_COVERAGE 2. jj_3R_55 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_55 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8755 | } | |
| 8756 | ||
| 8757 | final private boolean jj_3R_54() { | |
| 8758 |
5
1. jj_3R_54 : Substituted 43 with 44 → SURVIVED 2. jj_3R_54 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_54 : negated conditional → KILLED 4. jj_3R_54 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_54 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(NATIVE)) { |
| 8759 |
3
1. jj_3R_54 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_54 → KILLED 2. jj_3R_54 : Substituted 1 with 0 → KILLED 3. jj_3R_54 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8760 | } | |
| 8761 |
3
1. jj_3R_54 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_54 → NO_COVERAGE 2. jj_3R_54 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_54 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8762 | } | |
| 8763 | ||
| 8764 | final private boolean jj_3R_53() { | |
| 8765 |
5
1. jj_3R_53 : Substituted 56 with 57 → SURVIVED 2. jj_3R_53 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_53 : negated conditional → KILLED 4. jj_3R_53 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_53 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(SYNCHRONIZED)) { |
| 8766 |
3
1. jj_3R_53 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_53 → KILLED 2. jj_3R_53 : Substituted 1 with 0 → KILLED 3. jj_3R_53 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8767 | } | |
| 8768 |
3
1. jj_3R_53 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_53 → NO_COVERAGE 2. jj_3R_53 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_53 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8769 | } | |
| 8770 | ||
| 8771 | final private boolean jj_3R_177() { | |
| 8772 |
5
1. jj_3R_177 : Substituted 25 with 26 → NO_COVERAGE 2. jj_3R_177 : negated conditional → NO_COVERAGE 3. jj_3R_177 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_177 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_177 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(DO)) { |
| 8773 |
3
1. jj_3R_177 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8774 | } | |
| 8775 |
4
1. jj_3R_177 : negated conditional → NO_COVERAGE 2. jj_3R_177 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 3. jj_3R_177 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_177 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_146()) { |
| 8776 |
3
1. jj_3R_177 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8777 | } | |
| 8778 |
5
1. jj_3R_177 : Substituted 65 with 66 → NO_COVERAGE 2. jj_3R_177 : negated conditional → NO_COVERAGE 3. jj_3R_177 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_177 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_177 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(WHILE)) { |
| 8779 |
3
1. jj_3R_177 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8780 | } | |
| 8781 |
5
1. jj_3R_177 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_177 : negated conditional → NO_COVERAGE 3. jj_3R_177 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_177 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_177 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8782 |
3
1. jj_3R_177 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8783 | } | |
| 8784 |
4
1. jj_3R_177 : negated conditional → NO_COVERAGE 2. jj_3R_177 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_177 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_177 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8785 |
3
1. jj_3R_177 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8786 | } | |
| 8787 |
5
1. jj_3R_177 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_177 : negated conditional → NO_COVERAGE 3. jj_3R_177 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_177 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_177 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 8788 |
3
1. jj_3R_177 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8789 | } | |
| 8790 |
5
1. jj_3R_177 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_177 : negated conditional → NO_COVERAGE 3. jj_3R_177 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_177 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_177 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 8791 |
3
1. jj_3R_177 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8792 | } | |
| 8793 |
3
1. jj_3R_177 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 2. jj_3R_177 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8794 | } | |
| 8795 | ||
| 8796 | final private boolean jj_3R_52() { | |
| 8797 |
5
1. jj_3R_52 : Substituted 13 with 14 → SURVIVED 2. jj_3R_52 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_52 : negated conditional → KILLED 4. jj_3R_52 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_52 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(ABSTRACT)) { |
| 8798 |
3
1. jj_3R_52 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_52 → KILLED 2. jj_3R_52 : Substituted 1 with 0 → KILLED 3. jj_3R_52 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8799 | } | |
| 8800 |
3
1. jj_3R_52 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_52 → NO_COVERAGE 2. jj_3R_52 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_52 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8801 | } | |
| 8802 | ||
| 8803 | final private boolean jj_3R_51() { | |
| 8804 |
5
1. jj_3R_51 : Substituted 31 with 32 → SURVIVED 2. jj_3R_51 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_51 : negated conditional → KILLED 4. jj_3R_51 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_51 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(FINAL)) { |
| 8805 |
3
1. jj_3R_51 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_51 → KILLED 2. jj_3R_51 : Substituted 1 with 0 → KILLED 3. jj_3R_51 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8806 | } | |
| 8807 |
3
1. jj_3R_51 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_51 → NO_COVERAGE 2. jj_3R_51 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_51 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8808 | } | |
| 8809 | ||
| 8810 | final private boolean jj_3R_50() { | |
| 8811 |
5
1. jj_3R_50 : Substituted 47 with 48 → SURVIVED 2. jj_3R_50 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_50 : negated conditional → KILLED 4. jj_3R_50 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_50 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(PRIVATE)) { |
| 8812 |
3
1. jj_3R_50 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_50 → KILLED 2. jj_3R_50 : Substituted 1 with 0 → KILLED 3. jj_3R_50 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8813 | } | |
| 8814 |
3
1. jj_3R_50 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_50 → NO_COVERAGE 2. jj_3R_50 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_50 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8815 | } | |
| 8816 | ||
| 8817 | final private boolean jj_3R_176() { | |
| 8818 |
5
1. jj_3R_176 : Substituted 65 with 66 → NO_COVERAGE 2. jj_3R_176 : negated conditional → NO_COVERAGE 3. jj_3R_176 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_176 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_176 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(WHILE)) { |
| 8819 |
3
1. jj_3R_176 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_176 → NO_COVERAGE 2. jj_3R_176 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8820 | } | |
| 8821 |
5
1. jj_3R_176 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_176 : negated conditional → NO_COVERAGE 3. jj_3R_176 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_176 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_176 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8822 |
3
1. jj_3R_176 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_176 → NO_COVERAGE 2. jj_3R_176 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8823 | } | |
| 8824 |
4
1. jj_3R_176 : negated conditional → NO_COVERAGE 2. jj_3R_176 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_176 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_176 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8825 |
3
1. jj_3R_176 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_176 → NO_COVERAGE 2. jj_3R_176 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8826 | } | |
| 8827 |
5
1. jj_3R_176 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_176 : negated conditional → NO_COVERAGE 3. jj_3R_176 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_176 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_176 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 8828 |
3
1. jj_3R_176 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_176 → NO_COVERAGE 2. jj_3R_176 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8829 | } | |
| 8830 |
4
1. jj_3R_176 : negated conditional → NO_COVERAGE 2. jj_3R_176 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 3. jj_3R_176 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_176 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_146()) { |
| 8831 |
3
1. jj_3R_176 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_176 → NO_COVERAGE 2. jj_3R_176 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8832 | } | |
| 8833 |
3
1. jj_3R_176 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_176 → NO_COVERAGE 2. jj_3R_176 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8834 | } | |
| 8835 | ||
| 8836 | final private boolean jj_3R_49() { | |
| 8837 |
5
1. jj_3R_49 : Substituted 48 with 49 → SURVIVED 2. jj_3R_49 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_49 : negated conditional → KILLED 4. jj_3R_49 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_49 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(PROTECTED)) { |
| 8838 |
3
1. jj_3R_49 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_49 → KILLED 2. jj_3R_49 : Substituted 1 with 0 → KILLED 3. jj_3R_49 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8839 | } | |
| 8840 |
3
1. jj_3R_49 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_49 → NO_COVERAGE 2. jj_3R_49 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_49 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8841 | } | |
| 8842 | ||
| 8843 | final private boolean jj_3R_48() { | |
| 8844 |
5
1. jj_3R_48 : Substituted 52 with 53 → SURVIVED 2. jj_3R_48 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_48 : negated conditional → KILLED 4. jj_3R_48 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_48 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(STATIC)) { |
| 8845 |
3
1. jj_3R_48 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_48 → KILLED 2. jj_3R_48 : Substituted 1 with 0 → KILLED 3. jj_3R_48 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8846 | } | |
| 8847 |
3
1. jj_3R_48 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_48 → NO_COVERAGE 2. jj_3R_48 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_48 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8848 | } | |
| 8849 | ||
| 8850 | final private boolean jj_3R_295() { | |
| 8851 |
4
1. jj_3R_295 : negated conditional → NO_COVERAGE 2. jj_3R_295 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_133 → NO_COVERAGE 3. jj_3R_295 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_295 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_133()) { |
| 8852 |
3
1. jj_3R_295 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_295 → NO_COVERAGE 2. jj_3R_295 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_295 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8853 | } | |
| 8854 |
3
1. jj_3R_295 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_295 → NO_COVERAGE 2. jj_3R_295 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_295 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8855 | } | |
| 8856 | ||
| 8857 | final private boolean jj_3R_47() { | |
| 8858 |
5
1. jj_3R_47 : Substituted 49 with 50 → SURVIVED 2. jj_3R_47 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_47 : negated conditional → KILLED 4. jj_3R_47 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_47 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(PUBLIC)) { |
| 8859 |
3
1. jj_3R_47 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_47 → KILLED 2. jj_3R_47 : Substituted 1 with 0 → KILLED 3. jj_3R_47 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8860 | } | |
| 8861 |
3
1. jj_3R_47 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_47 → NO_COVERAGE 2. jj_3R_47 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_47 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8862 | } | |
| 8863 | ||
| 8864 | final private boolean jj_3R_175() { | |
| 8865 |
5
1. jj_3R_175 : Substituted 36 with 37 → NO_COVERAGE 2. jj_3R_175 : negated conditional → NO_COVERAGE 3. jj_3R_175 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_175 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_175 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IF)) { |
| 8866 |
3
1. jj_3R_175 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_175 → NO_COVERAGE 2. jj_3R_175 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8867 | } | |
| 8868 |
5
1. jj_3R_175 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_175 : negated conditional → NO_COVERAGE 3. jj_3R_175 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_175 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_175 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 8869 |
3
1. jj_3R_175 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_175 → NO_COVERAGE 2. jj_3R_175 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8870 | } | |
| 8871 |
4
1. jj_3R_175 : negated conditional → NO_COVERAGE 2. jj_3R_175 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_175 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_175 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8872 |
3
1. jj_3R_175 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_175 → NO_COVERAGE 2. jj_3R_175 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8873 | } | |
| 8874 |
5
1. jj_3R_175 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_175 : negated conditional → NO_COVERAGE 3. jj_3R_175 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_175 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_175 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 8875 |
3
1. jj_3R_175 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_175 → NO_COVERAGE 2. jj_3R_175 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8876 | } | |
| 8877 |
4
1. jj_3R_175 : negated conditional → NO_COVERAGE 2. jj_3R_175 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 3. jj_3R_175 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_175 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_146()) { |
| 8878 |
3
1. jj_3R_175 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_175 → NO_COVERAGE 2. jj_3R_175 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8879 | } | |
| 8880 | Token xsp; | |
| 8881 | xsp = jj_scanpos; | |
| 8882 |
4
1. jj_3R_175 : negated conditional → NO_COVERAGE 2. jj_3R_175 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_285 → NO_COVERAGE 3. jj_3R_175 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_175 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_285()) { |
| 8883 |
1
1. jj_3R_175 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8884 | } | |
| 8885 |
3
1. jj_3R_175 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_175 → NO_COVERAGE 2. jj_3R_175 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8886 | } | |
| 8887 | ||
| 8888 | final private boolean jj_3_1() { | |
| 8889 | Token xsp; | |
| 8890 | xsp = jj_scanpos; | |
| 8891 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_47 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_47()) { |
| 8892 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8893 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_48 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_48()) { |
| 8894 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8895 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_49 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_49()) { |
| 8896 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8897 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_50 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_50()) { |
| 8898 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8899 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_51 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_51()) { |
| 8900 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8901 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_52 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_52()) { |
| 8902 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8903 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_53 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_53()) { |
| 8904 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8905 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_54 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_54()) { |
| 8906 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8907 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_55 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_55()) { |
| 8908 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8909 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_56 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_56()) { |
| 8910 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8911 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_57 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_57()) { |
| 8912 |
1
1. jj_3_1 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 8913 |
4
1. jj_3_1 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_1 : negated conditional → KILLED 3. jj_3_1 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_58 → KILLED 4. jj_3_1 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_58()) { |
| 8914 |
3
1. jj_3_1 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_1 → KILLED 2. jj_3_1 : Substituted 1 with 0 → KILLED 3. jj_3_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 8915 | } | |
| 8916 | } | |
| 8917 | } | |
| 8918 | } | |
| 8919 | } | |
| 8920 | } | |
| 8921 | } | |
| 8922 | } | |
| 8923 | } | |
| 8924 | } | |
| 8925 | } | |
| 8926 | } | |
| 8927 |
3
1. jj_3_1 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_1 → NO_COVERAGE 2. jj_3_1 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8928 | } | |
| 8929 | ||
| 8930 | final private boolean jj_3R_220() { | |
| 8931 | Token xsp; | |
| 8932 | while (true) { | |
| 8933 | xsp = jj_scanpos; | |
| 8934 |
4
1. jj_3R_220 : negated conditional → NO_COVERAGE 2. jj_3R_220 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_1 → NO_COVERAGE 3. jj_3R_220 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_220 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_1()) { |
| 8935 |
1
1. jj_3R_220 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8936 | break; | |
| 8937 | } | |
| 8938 | } | |
| 8939 |
3
1. jj_3R_220 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_220 → NO_COVERAGE 2. jj_3R_220 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_220 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8940 | } | |
| 8941 | ||
| 8942 | final private boolean jj_3R_301() { | |
| 8943 |
5
1. jj_3R_301 : Substituted 24 with 25 → NO_COVERAGE 2. jj_3R_301 : negated conditional → NO_COVERAGE 3. jj_3R_301 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_301 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_301 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(_DEFAULT)) { |
| 8944 |
3
1. jj_3R_301 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_301 → NO_COVERAGE 2. jj_3R_301 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_301 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8945 | } | |
| 8946 |
5
1. jj_3R_301 : Substituted 92 with 93 → NO_COVERAGE 2. jj_3R_301 : negated conditional → NO_COVERAGE 3. jj_3R_301 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_301 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_301 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COLON)) { |
| 8947 |
3
1. jj_3R_301 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_301 → NO_COVERAGE 2. jj_3R_301 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_301 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8948 | } | |
| 8949 |
3
1. jj_3R_301 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_301 → NO_COVERAGE 2. jj_3R_301 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_301 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8950 | } | |
| 8951 | ||
| 8952 | final private boolean jj_3R_300() { | |
| 8953 |
5
1. jj_3R_300 : Substituted 18 with 19 → NO_COVERAGE 2. jj_3R_300 : negated conditional → NO_COVERAGE 3. jj_3R_300 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_300 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_300 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(CASE)) { |
| 8954 |
3
1. jj_3R_300 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_300 → NO_COVERAGE 2. jj_3R_300 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_300 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8955 | } | |
| 8956 |
4
1. jj_3R_300 : negated conditional → NO_COVERAGE 2. jj_3R_300 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_300 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_300 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 8957 |
3
1. jj_3R_300 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_300 → NO_COVERAGE 2. jj_3R_300 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_300 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8958 | } | |
| 8959 |
5
1. jj_3R_300 : Substituted 92 with 93 → NO_COVERAGE 2. jj_3R_300 : negated conditional → NO_COVERAGE 3. jj_3R_300 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_300 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_300 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COLON)) { |
| 8960 |
3
1. jj_3R_300 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_300 → NO_COVERAGE 2. jj_3R_300 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_300 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8961 | } | |
| 8962 |
3
1. jj_3R_300 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_300 → NO_COVERAGE 2. jj_3R_300 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_300 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8963 | } | |
| 8964 | ||
| 8965 | final private boolean jj_3R_294() { | |
| 8966 | Token xsp; | |
| 8967 | xsp = jj_scanpos; | |
| 8968 |
4
1. jj_3R_294 : negated conditional → NO_COVERAGE 2. jj_3R_294 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_300 → NO_COVERAGE 3. jj_3R_294 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_294 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_300()) { |
| 8969 |
1
1. jj_3R_294 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8970 |
4
1. jj_3R_294 : negated conditional → NO_COVERAGE 2. jj_3R_294 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_301 → NO_COVERAGE 3. jj_3R_294 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_294 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_301()) { |
| 8971 |
3
1. jj_3R_294 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_294 → NO_COVERAGE 2. jj_3R_294 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_294 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8972 | } | |
| 8973 | } | |
| 8974 |
3
1. jj_3R_294 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_294 → NO_COVERAGE 2. jj_3R_294 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_294 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8975 | } | |
| 8976 | ||
| 8977 | final private boolean jj_3R_279() { | |
| 8978 |
5
1. jj_3R_279 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_279 : negated conditional → NO_COVERAGE 3. jj_3R_279 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_279 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_279 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 8979 |
3
1. jj_3R_279 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_279 → NO_COVERAGE 2. jj_3R_279 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_279 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8980 | } | |
| 8981 |
4
1. jj_3R_279 : negated conditional → NO_COVERAGE 2. jj_3R_279 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_246 → NO_COVERAGE 3. jj_3R_279 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_279 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_246()) { |
| 8982 |
3
1. jj_3R_279 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_279 → NO_COVERAGE 2. jj_3R_279 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_279 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8983 | } | |
| 8984 |
3
1. jj_3R_279 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_279 → NO_COVERAGE 2. jj_3R_279 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_279 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 8985 | } | |
| 8986 | ||
| 8987 | final private boolean jj_3R_284() { | |
| 8988 |
4
1. jj_3R_284 : negated conditional → NO_COVERAGE 2. jj_3R_284 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_294 → NO_COVERAGE 3. jj_3R_284 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_284 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_294()) { |
| 8989 |
3
1. jj_3R_284 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_284 → NO_COVERAGE 2. jj_3R_284 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_284 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 8990 | } | |
| 8991 | Token xsp; | |
| 8992 | while (true) { | |
| 8993 | xsp = jj_scanpos; | |
| 8994 |
4
1. jj_3R_284 : negated conditional → NO_COVERAGE 2. jj_3R_284 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_295 → NO_COVERAGE 3. jj_3R_284 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_284 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_295()) { |
| 8995 |
1
1. jj_3R_284 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 8996 | break; | |
| 8997 | } | |
| 8998 | } | |
| 8999 |
3
1. jj_3R_284 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_284 → NO_COVERAGE 2. jj_3R_284 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_284 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9000 | } | |
| 9001 | ||
| 9002 | final private boolean jj_3R_174() { | |
| 9003 |
5
1. jj_3R_174 : Substituted 55 with 56 → NO_COVERAGE 2. jj_3R_174 : negated conditional → NO_COVERAGE 3. jj_3R_174 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_174 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_174 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SWITCH)) { |
| 9004 |
3
1. jj_3R_174 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 2. jj_3R_174 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9005 | } | |
| 9006 |
5
1. jj_3R_174 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_174 : negated conditional → NO_COVERAGE 3. jj_3R_174 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_174 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_174 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 9007 |
3
1. jj_3R_174 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 2. jj_3R_174 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9008 | } | |
| 9009 |
4
1. jj_3R_174 : negated conditional → NO_COVERAGE 2. jj_3R_174 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_174 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_174 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9010 |
3
1. jj_3R_174 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 2. jj_3R_174 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9011 | } | |
| 9012 |
5
1. jj_3R_174 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_174 : negated conditional → NO_COVERAGE 3. jj_3R_174 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_174 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_174 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 9013 |
3
1. jj_3R_174 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 2. jj_3R_174 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9014 | } | |
| 9015 |
5
1. jj_3R_174 : Substituted 79 with 80 → NO_COVERAGE 2. jj_3R_174 : negated conditional → NO_COVERAGE 3. jj_3R_174 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_174 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_174 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACE)) { |
| 9016 |
3
1. jj_3R_174 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 2. jj_3R_174 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9017 | } | |
| 9018 | Token xsp; | |
| 9019 | while (true) { | |
| 9020 | xsp = jj_scanpos; | |
| 9021 |
4
1. jj_3R_174 : negated conditional → NO_COVERAGE 2. jj_3R_174 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_284 → NO_COVERAGE 3. jj_3R_174 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_174 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_284()) { |
| 9022 |
1
1. jj_3R_174 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9023 | break; | |
| 9024 | } | |
| 9025 | } | |
| 9026 |
5
1. jj_3R_174 : Substituted 80 with 81 → NO_COVERAGE 2. jj_3R_174 : negated conditional → NO_COVERAGE 3. jj_3R_174 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_174 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_174 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACE)) { |
| 9027 |
3
1. jj_3R_174 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 2. jj_3R_174 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9028 | } | |
| 9029 |
3
1. jj_3R_174 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 2. jj_3R_174 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9030 | } | |
| 9031 | ||
| 9032 | final private boolean jj_3R_299() { | |
| 9033 |
4
1. jj_3R_299 : negated conditional → NO_COVERAGE 2. jj_3R_299 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_69 → NO_COVERAGE 3. jj_3R_299 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_299 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_69()) { |
| 9034 |
3
1. jj_3R_299 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_299 → NO_COVERAGE 2. jj_3R_299 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_299 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9035 | } | |
| 9036 |
4
1. jj_3R_299 : negated conditional → NO_COVERAGE 2. jj_3R_299 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_299 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_299 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9037 |
3
1. jj_3R_299 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_299 → NO_COVERAGE 2. jj_3R_299 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_299 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9038 | } | |
| 9039 |
3
1. jj_3R_299 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_299 → NO_COVERAGE 2. jj_3R_299 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_299 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9040 | } | |
| 9041 | ||
| 9042 | final private boolean jj_3R_293() { | |
| 9043 | Token xsp; | |
| 9044 | xsp = jj_scanpos; | |
| 9045 |
5
1. jj_3R_293 : Substituted 99 with 100 → NO_COVERAGE 2. jj_3R_293 : negated conditional → NO_COVERAGE 3. jj_3R_293 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_293 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_293 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(99)) { |
| 9046 |
1
1. jj_3R_293 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9047 |
5
1. jj_3R_293 : Substituted 100 with 101 → NO_COVERAGE 2. jj_3R_293 : negated conditional → NO_COVERAGE 3. jj_3R_293 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_293 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_293 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(100)) { |
| 9048 |
1
1. jj_3R_293 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9049 |
4
1. jj_3R_293 : negated conditional → NO_COVERAGE 2. jj_3R_293 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_299 → NO_COVERAGE 3. jj_3R_293 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_293 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_299()) { |
| 9050 |
3
1. jj_3R_293 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_293 → NO_COVERAGE 2. jj_3R_293 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_293 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9051 | } | |
| 9052 | } | |
| 9053 | } | |
| 9054 |
3
1. jj_3R_293 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_293 → NO_COVERAGE 2. jj_3R_293 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_293 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9055 | } | |
| 9056 | ||
| 9057 | final private boolean jj_3R_189() { | |
| 9058 |
4
1. jj_3R_189 : negated conditional → NO_COVERAGE 2. jj_3R_189 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_65 → NO_COVERAGE 3. jj_3R_189 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_189 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_65()) { |
| 9059 |
3
1. jj_3R_189 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_189 → NO_COVERAGE 2. jj_3R_189 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_189 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9060 | } | |
| 9061 | Token xsp; | |
| 9062 | xsp = jj_scanpos; | |
| 9063 |
4
1. jj_3R_189 : negated conditional → NO_COVERAGE 2. jj_3R_189 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_293 → NO_COVERAGE 3. jj_3R_189 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_189 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_293()) { |
| 9064 |
1
1. jj_3R_189 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9065 | } | |
| 9066 |
3
1. jj_3R_189 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_189 → NO_COVERAGE 2. jj_3R_189 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_189 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9067 | } | |
| 9068 | ||
| 9069 | final private boolean jj_3R_188() { | |
| 9070 |
4
1. jj_3R_188 : negated conditional → NO_COVERAGE 2. jj_3R_188 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_198 → NO_COVERAGE 3. jj_3R_188 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_188 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_198()) { |
| 9071 |
3
1. jj_3R_188 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_188 → NO_COVERAGE 2. jj_3R_188 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_188 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9072 | } | |
| 9073 |
3
1. jj_3R_188 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_188 → NO_COVERAGE 2. jj_3R_188 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_188 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9074 | } | |
| 9075 | ||
| 9076 | final private boolean jj_3R_173() { | |
| 9077 | Token xsp; | |
| 9078 | xsp = jj_scanpos; | |
| 9079 |
4
1. jj_3R_173 : negated conditional → NO_COVERAGE 2. jj_3R_173 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_187 → NO_COVERAGE 3. jj_3R_173 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_173 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_187()) { |
| 9080 |
1
1. jj_3R_173 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9081 |
4
1. jj_3R_173 : negated conditional → NO_COVERAGE 2. jj_3R_173 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_188 → NO_COVERAGE 3. jj_3R_173 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_173 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_188()) { |
| 9082 |
1
1. jj_3R_173 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9083 |
4
1. jj_3R_173 : negated conditional → NO_COVERAGE 2. jj_3R_173 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_189 → NO_COVERAGE 3. jj_3R_173 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_173 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_189()) { |
| 9084 |
3
1. jj_3R_173 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_173 → NO_COVERAGE 2. jj_3R_173 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_173 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9085 | } | |
| 9086 | } | |
| 9087 | } | |
| 9088 |
3
1. jj_3R_173 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_173 → NO_COVERAGE 2. jj_3R_173 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_173 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9089 | } | |
| 9090 | ||
| 9091 | final private boolean jj_3R_187() { | |
| 9092 |
4
1. jj_3R_187 : negated conditional → NO_COVERAGE 2. jj_3R_187 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_197 → NO_COVERAGE 3. jj_3R_187 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_187 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_197()) { |
| 9093 |
3
1. jj_3R_187 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_187 → NO_COVERAGE 2. jj_3R_187 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_187 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9094 | } | |
| 9095 |
3
1. jj_3R_187 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_187 → NO_COVERAGE 2. jj_3R_187 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_187 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9096 | } | |
| 9097 | ||
| 9098 | final private boolean jj_3R_172() { | |
| 9099 |
5
1. jj_3R_172 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_172 : negated conditional → NO_COVERAGE 3. jj_3R_172 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_172 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_172 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 9100 |
3
1. jj_3R_172 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_172 → NO_COVERAGE 2. jj_3R_172 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_172 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9101 | } | |
| 9102 |
3
1. jj_3R_172 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_172 → NO_COVERAGE 2. jj_3R_172 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_172 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9103 | } | |
| 9104 | ||
| 9105 | final private boolean jj_3R_145() { | |
| 9106 | Token xsp; | |
| 9107 | xsp = jj_scanpos; | |
| 9108 |
5
1. jj_3R_145 : Substituted 31 with 32 → NO_COVERAGE 2. jj_3R_145 : negated conditional → NO_COVERAGE 3. jj_3R_145 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_145 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_145 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(31)) { |
| 9109 |
1
1. jj_3R_145 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9110 | } | |
| 9111 |
4
1. jj_3R_145 : negated conditional → NO_COVERAGE 2. jj_3R_145 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3R_145 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_145 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 9112 |
3
1. jj_3R_145 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_145 → NO_COVERAGE 2. jj_3R_145 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_145 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9113 | } | |
| 9114 |
4
1. jj_3R_145 : negated conditional → NO_COVERAGE 2. jj_3R_145 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_246 → NO_COVERAGE 3. jj_3R_145 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_145 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_246()) { |
| 9115 |
3
1. jj_3R_145 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_145 → NO_COVERAGE 2. jj_3R_145 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_145 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9116 | } while (true) { | |
| 9117 | xsp = jj_scanpos; | |
| 9118 |
4
1. jj_3R_145 : negated conditional → NO_COVERAGE 2. jj_3R_145 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_279 → NO_COVERAGE 3. jj_3R_145 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_145 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_279()) { |
| 9119 |
1
1. jj_3R_145 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9120 | break; | |
| 9121 | } | |
| 9122 | } | |
| 9123 |
3
1. jj_3R_145 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_145 → NO_COVERAGE 2. jj_3R_145 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_145 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9124 | } | |
| 9125 | ||
| 9126 | final private boolean jj_3_34() { | |
| 9127 | Token xsp; | |
| 9128 | xsp = jj_scanpos; | |
| 9129 |
5
1. jj_3_34 : Substituted 31 with 32 → NO_COVERAGE 2. jj_3_34 : negated conditional → NO_COVERAGE 3. jj_3_34 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_34 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_34 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(31)) { |
| 9130 |
1
1. jj_3_34 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9131 | } | |
| 9132 |
4
1. jj_3_34 : negated conditional → NO_COVERAGE 2. jj_3_34 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3_34 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_34 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 9133 |
3
1. jj_3_34 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_34 → NO_COVERAGE 2. jj_3_34 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9134 | } | |
| 9135 |
5
1. jj_3_34 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3_34 : negated conditional → NO_COVERAGE 3. jj_3_34 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_34 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_34 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 9136 |
3
1. jj_3_34 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_34 → NO_COVERAGE 2. jj_3_34 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9137 | } | |
| 9138 |
3
1. jj_3_34 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_34 → NO_COVERAGE 2. jj_3_34 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9139 | } | |
| 9140 | ||
| 9141 | final private boolean jj_3R_283() { | |
| 9142 |
5
1. jj_3R_283 : Substituted 92 with 93 → NO_COVERAGE 2. jj_3R_283 : negated conditional → NO_COVERAGE 3. jj_3R_283 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_283 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_283 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COLON)) { |
| 9143 |
3
1. jj_3R_283 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_283 → NO_COVERAGE 2. jj_3R_283 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_283 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9144 | } | |
| 9145 |
4
1. jj_3R_283 : negated conditional → NO_COVERAGE 2. jj_3R_283 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_283 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_283 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9146 |
3
1. jj_3R_283 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_283 → NO_COVERAGE 2. jj_3R_283 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_283 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9147 | } | |
| 9148 |
3
1. jj_3R_283 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_283 → NO_COVERAGE 2. jj_3R_283 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_283 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9149 | } | |
| 9150 | ||
| 9151 | final private boolean jj_3R_140() { | |
| 9152 |
4
1. jj_3R_140 : negated conditional → NO_COVERAGE 2. jj_3R_140 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_147 → NO_COVERAGE 3. jj_3R_140 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_140 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_147()) { |
| 9153 |
3
1. jj_3R_140 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_140 → NO_COVERAGE 2. jj_3R_140 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_140 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9154 | } | |
| 9155 |
3
1. jj_3R_140 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_140 → NO_COVERAGE 2. jj_3R_140 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_140 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9156 | } | |
| 9157 | ||
| 9158 | final private boolean jj_3R_139() { | |
| 9159 |
4
1. jj_3R_139 : negated conditional → NO_COVERAGE 2. jj_3R_139 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 3. jj_3R_139 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_139 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_146()) { |
| 9160 |
3
1. jj_3R_139 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_139 → NO_COVERAGE 2. jj_3R_139 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_139 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9161 | } | |
| 9162 |
3
1. jj_3R_139 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_139 → NO_COVERAGE 2. jj_3R_139 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_139 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9163 | } | |
| 9164 | ||
| 9165 | final private boolean jj_3R_138() { | |
| 9166 |
4
1. jj_3R_138 : negated conditional → NO_COVERAGE 2. jj_3R_138 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_145 → NO_COVERAGE 3. jj_3R_138 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_138 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_145()) { |
| 9167 |
3
1. jj_3R_138 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_138 → NO_COVERAGE 2. jj_3R_138 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_138 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9168 | } | |
| 9169 |
5
1. jj_3R_138 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_138 : negated conditional → NO_COVERAGE 3. jj_3R_138 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_138 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_138 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 9170 |
3
1. jj_3R_138 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_138 → NO_COVERAGE 2. jj_3R_138 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_138 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9171 | } | |
| 9172 |
3
1. jj_3R_138 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_138 → NO_COVERAGE 2. jj_3R_138 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_138 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9173 | } | |
| 9174 | ||
| 9175 | final private boolean jj_3R_133() { | |
| 9176 | Token xsp; | |
| 9177 | xsp = jj_scanpos; | |
| 9178 |
4
1. jj_3R_133 : negated conditional → NO_COVERAGE 2. jj_3R_133 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_138 → NO_COVERAGE 3. jj_3R_133 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_133 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_138()) { |
| 9179 |
1
1. jj_3R_133 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9180 |
4
1. jj_3R_133 : negated conditional → NO_COVERAGE 2. jj_3R_133 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_139 → NO_COVERAGE 3. jj_3R_133 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_133 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_139()) { |
| 9181 |
1
1. jj_3R_133 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9182 |
4
1. jj_3R_133 : negated conditional → NO_COVERAGE 2. jj_3R_133 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_140 → NO_COVERAGE 3. jj_3R_133 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_133 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_140()) { |
| 9183 |
3
1. jj_3R_133 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_133 → NO_COVERAGE 2. jj_3R_133 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_133 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9184 | } | |
| 9185 | } | |
| 9186 | } | |
| 9187 |
3
1. jj_3R_133 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_133 → NO_COVERAGE 2. jj_3R_133 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_133 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9188 | } | |
| 9189 | ||
| 9190 | final private boolean jj_3R_114() { | |
| 9191 |
4
1. jj_3R_114 : negated conditional → NO_COVERAGE 2. jj_3R_114 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_133 → NO_COVERAGE 3. jj_3R_114 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_114 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_133()) { |
| 9192 |
3
1. jj_3R_114 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_114 → NO_COVERAGE 2. jj_3R_114 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_114 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9193 | } | |
| 9194 |
3
1. jj_3R_114 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_114 → NO_COVERAGE 2. jj_3R_114 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_114 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9195 | } | |
| 9196 | ||
| 9197 | final private boolean jj_3R_86() { | |
| 9198 |
5
1. jj_3R_86 : Substituted 79 with 80 → NO_COVERAGE 2. jj_3R_86 : negated conditional → NO_COVERAGE 3. jj_3R_86 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_86 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_86 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACE)) { |
| 9199 |
3
1. jj_3R_86 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 2. jj_3R_86 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9200 | } | |
| 9201 | Token xsp; | |
| 9202 | while (true) { | |
| 9203 | xsp = jj_scanpos; | |
| 9204 |
4
1. jj_3R_86 : negated conditional → NO_COVERAGE 2. jj_3R_86 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_114 → NO_COVERAGE 3. jj_3R_86 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_86 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_114()) { |
| 9205 |
1
1. jj_3R_86 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9206 | break; | |
| 9207 | } | |
| 9208 | } | |
| 9209 |
5
1. jj_3R_86 : Substituted 80 with 81 → NO_COVERAGE 2. jj_3R_86 : negated conditional → NO_COVERAGE 3. jj_3R_86 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_86 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_86 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACE)) { |
| 9210 |
3
1. jj_3R_86 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 2. jj_3R_86 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9211 | } | |
| 9212 |
3
1. jj_3R_86 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 2. jj_3R_86 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9213 | } | |
| 9214 | ||
| 9215 | final private boolean jj_3R_79() { | |
| 9216 |
5
1. jj_3R_79 : Substituted 74 with 75 → SURVIVED 2. jj_3R_79 : negated conditional → SURVIVED 3. jj_3R_79 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_79 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_79 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(IDENTIFIER)) { |
| 9217 |
3
1. jj_3R_79 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_79 → SURVIVED 2. jj_3R_79 : Substituted 1 with 0 → SURVIVED 3. jj_3R_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9218 | } | |
| 9219 |
5
1. jj_3R_79 : Substituted 92 with 93 → NO_COVERAGE 2. jj_3R_79 : negated conditional → NO_COVERAGE 3. jj_3R_79 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_79 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_79 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COLON)) { |
| 9220 |
3
1. jj_3R_79 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_79 → NO_COVERAGE 2. jj_3R_79 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9221 | } | |
| 9222 |
4
1. jj_3R_79 : negated conditional → NO_COVERAGE 2. jj_3R_79 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 3. jj_3R_79 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_79 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_146()) { |
| 9223 |
3
1. jj_3R_79 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_79 → NO_COVERAGE 2. jj_3R_79 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9224 | } | |
| 9225 |
3
1. jj_3R_79 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_79 → NO_COVERAGE 2. jj_3R_79 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9226 | } | |
| 9227 | ||
| 9228 | final private boolean jj_3R_171() { | |
| 9229 |
5
1. jj_3R_171 : Substituted 14 with 15 → NO_COVERAGE 2. jj_3R_171 : negated conditional → NO_COVERAGE 3. jj_3R_171 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_171 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_171 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(ASSERT)) { |
| 9230 |
3
1. jj_3R_171 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_171 → NO_COVERAGE 2. jj_3R_171 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9231 | } | |
| 9232 |
4
1. jj_3R_171 : negated conditional → NO_COVERAGE 2. jj_3R_171 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_171 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_171 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9233 |
3
1. jj_3R_171 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_171 → NO_COVERAGE 2. jj_3R_171 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9234 | } | |
| 9235 | Token xsp; | |
| 9236 | xsp = jj_scanpos; | |
| 9237 |
4
1. jj_3R_171 : negated conditional → NO_COVERAGE 2. jj_3R_171 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_283 → NO_COVERAGE 3. jj_3R_171 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_171 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_283()) { |
| 9238 |
1
1. jj_3R_171 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9239 | } | |
| 9240 |
5
1. jj_3R_171 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_171 : negated conditional → NO_COVERAGE 3. jj_3R_171 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_171 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_171 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 9241 |
3
1. jj_3R_171 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_171 → NO_COVERAGE 2. jj_3R_171 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9242 | } | |
| 9243 |
3
1. jj_3R_171 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_171 → NO_COVERAGE 2. jj_3R_171 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9244 | } | |
| 9245 | ||
| 9246 | final private boolean jj_3R_166() { | |
| 9247 |
4
1. jj_3R_166 : negated conditional → NO_COVERAGE 2. jj_3R_166 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_184 → NO_COVERAGE 3. jj_3R_166 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_166 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_184()) { |
| 9248 |
3
1. jj_3R_166 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_166 → NO_COVERAGE 2. jj_3R_166 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_166 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9249 | } | |
| 9250 |
3
1. jj_3R_166 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_166 → NO_COVERAGE 2. jj_3R_166 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_166 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9251 | } | |
| 9252 | ||
| 9253 | final private boolean jj_3R_165() { | |
| 9254 |
4
1. jj_3R_165 : negated conditional → NO_COVERAGE 2. jj_3R_165 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_183 → NO_COVERAGE 3. jj_3R_165 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_165 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_183()) { |
| 9255 |
3
1. jj_3R_165 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_165 → NO_COVERAGE 2. jj_3R_165 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_165 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9256 | } | |
| 9257 |
3
1. jj_3R_165 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_165 → NO_COVERAGE 2. jj_3R_165 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_165 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9258 | } | |
| 9259 | ||
| 9260 | final private boolean jj_3_31() { | |
| 9261 |
5
1. jj_3_31 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3_31 : negated conditional → NO_COVERAGE 3. jj_3_31 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_31 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_31 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 9262 |
3
1. jj_3_31 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_31 → NO_COVERAGE 2. jj_3_31 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9263 | } | |
| 9264 |
5
1. jj_3_31 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3_31 : negated conditional → NO_COVERAGE 3. jj_3_31 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_31 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_31 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 9265 |
3
1. jj_3_31 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_31 → NO_COVERAGE 2. jj_3_31 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9266 | } | |
| 9267 |
3
1. jj_3_31 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_31 → NO_COVERAGE 2. jj_3_31 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9268 | } | |
| 9269 | ||
| 9270 | final private boolean jj_3R_164() { | |
| 9271 |
4
1. jj_3R_164 : negated conditional → NO_COVERAGE 2. jj_3R_164 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_182 → NO_COVERAGE 3. jj_3R_164 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_164 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_182()) { |
| 9272 |
3
1. jj_3R_164 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_164 → NO_COVERAGE 2. jj_3R_164 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_164 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9273 | } | |
| 9274 |
3
1. jj_3R_164 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_164 → NO_COVERAGE 2. jj_3R_164 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_164 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9275 | } | |
| 9276 | ||
| 9277 | final private boolean jj_3R_163() { | |
| 9278 |
4
1. jj_3R_163 : negated conditional → NO_COVERAGE 2. jj_3R_163 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_181 → NO_COVERAGE 3. jj_3R_163 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_163 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_181()) { |
| 9279 |
3
1. jj_3R_163 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_163 → NO_COVERAGE 2. jj_3R_163 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_163 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9280 | } | |
| 9281 |
3
1. jj_3R_163 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_163 → NO_COVERAGE 2. jj_3R_163 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_163 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9282 | } | |
| 9283 | ||
| 9284 | final private boolean jj_3R_162() { | |
| 9285 |
4
1. jj_3R_162 : negated conditional → NO_COVERAGE 2. jj_3R_162 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_180 → NO_COVERAGE 3. jj_3R_162 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_162 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_180()) { |
| 9286 |
3
1. jj_3R_162 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_162 → NO_COVERAGE 2. jj_3R_162 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_162 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9287 | } | |
| 9288 |
3
1. jj_3R_162 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_162 → NO_COVERAGE 2. jj_3R_162 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_162 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9289 | } | |
| 9290 | ||
| 9291 | final private boolean jj_3R_161() { | |
| 9292 |
4
1. jj_3R_161 : negated conditional → NO_COVERAGE 2. jj_3R_161 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_179 → NO_COVERAGE 3. jj_3R_161 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_161 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_179()) { |
| 9293 |
3
1. jj_3R_161 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_161 → NO_COVERAGE 2. jj_3R_161 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_161 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9294 | } | |
| 9295 |
3
1. jj_3R_161 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_161 → NO_COVERAGE 2. jj_3R_161 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_161 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9296 | } | |
| 9297 | ||
| 9298 | final private boolean jj_3R_160() { | |
| 9299 |
4
1. jj_3R_160 : negated conditional → NO_COVERAGE 2. jj_3R_160 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_178 → NO_COVERAGE 3. jj_3R_160 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_160 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_178()) { |
| 9300 |
3
1. jj_3R_160 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_160 → NO_COVERAGE 2. jj_3R_160 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_160 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9301 | } | |
| 9302 |
3
1. jj_3R_160 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_160 → NO_COVERAGE 2. jj_3R_160 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_160 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9303 | } | |
| 9304 | ||
| 9305 | final private boolean jj_3R_159() { | |
| 9306 |
4
1. jj_3R_159 : negated conditional → NO_COVERAGE 2. jj_3R_159 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_177 → NO_COVERAGE 3. jj_3R_159 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_159 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_177()) { |
| 9307 |
3
1. jj_3R_159 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_159 → NO_COVERAGE 2. jj_3R_159 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_159 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9308 | } | |
| 9309 |
3
1. jj_3R_159 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_159 → NO_COVERAGE 2. jj_3R_159 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_159 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9310 | } | |
| 9311 | ||
| 9312 | final private boolean jj_3R_158() { | |
| 9313 |
4
1. jj_3R_158 : negated conditional → NO_COVERAGE 2. jj_3R_158 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_176 → NO_COVERAGE 3. jj_3R_158 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_158 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_176()) { |
| 9314 |
3
1. jj_3R_158 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_158 → NO_COVERAGE 2. jj_3R_158 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_158 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9315 | } | |
| 9316 |
3
1. jj_3R_158 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_158 → NO_COVERAGE 2. jj_3R_158 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_158 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9317 | } | |
| 9318 | ||
| 9319 | final private boolean jj_3R_157() { | |
| 9320 |
4
1. jj_3R_157 : negated conditional → NO_COVERAGE 2. jj_3R_157 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_175 → NO_COVERAGE 3. jj_3R_157 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_157 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_175()) { |
| 9321 |
3
1. jj_3R_157 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_157 → NO_COVERAGE 2. jj_3R_157 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_157 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9322 | } | |
| 9323 |
3
1. jj_3R_157 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_157 → NO_COVERAGE 2. jj_3R_157 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_157 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9324 | } | |
| 9325 | ||
| 9326 | final private boolean jj_3R_156() { | |
| 9327 |
4
1. jj_3R_156 : negated conditional → NO_COVERAGE 2. jj_3R_156 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_174 → NO_COVERAGE 3. jj_3R_156 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_156 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_174()) { |
| 9328 |
3
1. jj_3R_156 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_156 → NO_COVERAGE 2. jj_3R_156 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_156 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9329 | } | |
| 9330 |
3
1. jj_3R_156 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_156 → NO_COVERAGE 2. jj_3R_156 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_156 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9331 | } | |
| 9332 | ||
| 9333 | final private boolean jj_3R_155() { | |
| 9334 |
4
1. jj_3R_155 : negated conditional → NO_COVERAGE 2. jj_3R_155 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_173 → NO_COVERAGE 3. jj_3R_155 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_155 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_173()) { |
| 9335 |
3
1. jj_3R_155 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_155 → NO_COVERAGE 2. jj_3R_155 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_155 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9336 | } | |
| 9337 |
5
1. jj_3R_155 : Substituted 83 with 84 → NO_COVERAGE 2. jj_3R_155 : negated conditional → NO_COVERAGE 3. jj_3R_155 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_155 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_155 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SEMICOLON)) { |
| 9338 |
3
1. jj_3R_155 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_155 → NO_COVERAGE 2. jj_3R_155 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_155 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9339 | } | |
| 9340 |
3
1. jj_3R_155 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_155 → NO_COVERAGE 2. jj_3R_155 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_155 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9341 | } | |
| 9342 | ||
| 9343 | final private boolean jj_3R_154() { | |
| 9344 |
4
1. jj_3R_154 : negated conditional → NO_COVERAGE 2. jj_3R_154 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_172 → NO_COVERAGE 3. jj_3R_154 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_154 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_172()) { |
| 9345 |
3
1. jj_3R_154 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_154 → NO_COVERAGE 2. jj_3R_154 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_154 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9346 | } | |
| 9347 |
3
1. jj_3R_154 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_154 → NO_COVERAGE 2. jj_3R_154 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_154 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9348 | } | |
| 9349 | ||
| 9350 | final private boolean jj_3R_153() { | |
| 9351 |
4
1. jj_3R_153 : negated conditional → NO_COVERAGE 2. jj_3R_153 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_86 → NO_COVERAGE 3. jj_3R_153 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_153 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_86()) { |
| 9352 |
3
1. jj_3R_153 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_153 → NO_COVERAGE 2. jj_3R_153 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_153 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9353 | } | |
| 9354 |
3
1. jj_3R_153 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_153 → NO_COVERAGE 2. jj_3R_153 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_153 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9355 | } | |
| 9356 | ||
| 9357 | final private boolean jj_3R_152() { | |
| 9358 |
4
1. jj_3R_152 : negated conditional → NO_COVERAGE 2. jj_3R_152 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_171 → NO_COVERAGE 3. jj_3R_152 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_152 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_171()) { |
| 9359 |
3
1. jj_3R_152 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_152 → NO_COVERAGE 2. jj_3R_152 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_152 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9360 | } | |
| 9361 |
3
1. jj_3R_152 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_152 → NO_COVERAGE 2. jj_3R_152 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_152 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9362 | } | |
| 9363 | ||
| 9364 | final private boolean jj_3R_191() { | |
| 9365 |
4
1. jj_3R_191 : negated conditional → NO_COVERAGE 2. jj_3R_191 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → NO_COVERAGE 3. jj_3R_191 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_191 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_68()) { |
| 9366 |
3
1. jj_3R_191 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_191 → NO_COVERAGE 2. jj_3R_191 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_191 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9367 | } | |
| 9368 |
3
1. jj_3R_191 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_191 → NO_COVERAGE 2. jj_3R_191 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_191 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9369 | } | |
| 9370 | ||
| 9371 | final private boolean jj_3_33() { | |
| 9372 |
4
1. jj_3_33 : negated conditional → SURVIVED 2. jj_3_33 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_79 → SURVIVED 3. jj_3_33 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_33 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_79()) { |
| 9373 |
3
1. jj_3_33 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_33 → SURVIVED 2. jj_3_33 : Substituted 1 with 0 → SURVIVED 3. jj_3_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9374 | } | |
| 9375 |
3
1. jj_3_33 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_33 → NO_COVERAGE 2. jj_3_33 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9376 | } | |
| 9377 | ||
| 9378 | final private boolean jj_3R_146() { | |
| 9379 | Token xsp; | |
| 9380 | xsp = jj_scanpos; | |
| 9381 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_33 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_33()) { |
| 9382 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9383 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_152 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_152()) { |
| 9384 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9385 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_153 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_153()) { |
| 9386 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9387 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_154 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_154()) { |
| 9388 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9389 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_155 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_155()) { |
| 9390 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9391 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_156 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_156()) { |
| 9392 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9393 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_157 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_157()) { |
| 9394 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9395 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_158 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_158()) { |
| 9396 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9397 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_159 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_159()) { |
| 9398 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9399 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_160 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_160()) { |
| 9400 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9401 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_161 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_161()) { |
| 9402 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9403 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_162 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_162()) { |
| 9404 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9405 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_163 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_163()) { |
| 9406 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9407 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_164 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_164()) { |
| 9408 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = |
| 9409 | xsp; | |
| 9410 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_165 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_165()) { |
| 9411 |
1
1. jj_3R_146 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = |
| 9412 | xsp; | |
| 9413 |
4
1. jj_3R_146 : negated conditional → NO_COVERAGE 2. jj_3R_146 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_166 → NO_COVERAGE 3. jj_3R_146 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_146 : removed conditional - replaced equality check with true → NO_COVERAGE |
if ( |
| 9414 | jj_3R_166()) { | |
| 9415 |
3
1. jj_3R_146 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 2. jj_3R_146 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_146 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9416 | } | |
| 9417 | } | |
| 9418 | } | |
| 9419 | } | |
| 9420 | } | |
| 9421 | } | |
| 9422 | } | |
| 9423 | } | |
| 9424 | } | |
| 9425 | } | |
| 9426 | } | |
| 9427 | } | |
| 9428 | } | |
| 9429 | } | |
| 9430 | } | |
| 9431 | } | |
| 9432 |
3
1. jj_3R_146 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_146 → NO_COVERAGE 2. jj_3R_146 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_146 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9433 | } | |
| 9434 | ||
| 9435 | final private boolean jj_3R_200() { | |
| 9436 |
4
1. jj_3R_200 : negated conditional → NO_COVERAGE 2. jj_3R_200 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_205 → NO_COVERAGE 3. jj_3R_200 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_200 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_205()) { |
| 9437 |
3
1. jj_3R_200 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_200 → NO_COVERAGE 2. jj_3R_200 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_200 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9438 | } | |
| 9439 |
3
1. jj_3R_200 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_200 → NO_COVERAGE 2. jj_3R_200 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_200 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9440 | } | |
| 9441 | ||
| 9442 | final private boolean jj_3R_204() { | |
| 9443 |
5
1. jj_3R_204 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3R_204 : negated conditional → NO_COVERAGE 3. jj_3R_204 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_204 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_204 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 9444 |
3
1. jj_3R_204 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_204 → NO_COVERAGE 2. jj_3R_204 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_204 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9445 | } | |
| 9446 |
5
1. jj_3R_204 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3R_204 : negated conditional → NO_COVERAGE 3. jj_3R_204 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_204 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_204 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 9447 |
3
1. jj_3R_204 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_204 → NO_COVERAGE 2. jj_3R_204 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_204 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9448 | } | |
| 9449 |
3
1. jj_3R_204 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_204 → NO_COVERAGE 2. jj_3R_204 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_204 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9450 | } | |
| 9451 | ||
| 9452 | final private boolean jj_3_30() { | |
| 9453 |
5
1. jj_3_30 : Substituted 81 with 82 → SURVIVED 2. jj_3_30 : negated conditional → SURVIVED 3. jj_3_30 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_30 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_30 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LBRACKET)) { |
| 9454 |
3
1. jj_3_30 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_30 → SURVIVED 2. jj_3_30 : Substituted 1 with 0 → SURVIVED 3. jj_3_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9455 | } | |
| 9456 |
4
1. jj_3_30 : negated conditional → NO_COVERAGE 2. jj_3_30 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3_30 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_30 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9457 |
3
1. jj_3_30 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_30 → NO_COVERAGE 2. jj_3_30 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9458 | } | |
| 9459 |
5
1. jj_3_30 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3_30 : negated conditional → NO_COVERAGE 3. jj_3_30 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_30 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_30 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 9460 |
3
1. jj_3_30 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_30 → NO_COVERAGE 2. jj_3_30 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9461 | } | |
| 9462 |
3
1. jj_3_30 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_30 → NO_COVERAGE 2. jj_3_30 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9463 | } | |
| 9464 | ||
| 9465 | final private boolean jj_3R_199() { | |
| 9466 | Token xsp; | |
| 9467 |
4
1. jj_3R_199 : negated conditional → NO_COVERAGE 2. jj_3R_199 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_204 → NO_COVERAGE 3. jj_3R_199 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_199 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_204()) { |
| 9468 |
3
1. jj_3R_199 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_199 → NO_COVERAGE 2. jj_3R_199 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_199 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9469 | } while (true) { | |
| 9470 | xsp = jj_scanpos; | |
| 9471 |
4
1. jj_3R_199 : negated conditional → NO_COVERAGE 2. jj_3R_199 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_204 → NO_COVERAGE 3. jj_3R_199 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_199 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_204()) { |
| 9472 |
1
1. jj_3R_199 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9473 | break; | |
| 9474 | } | |
| 9475 | } | |
| 9476 |
4
1. jj_3R_199 : negated conditional → NO_COVERAGE 2. jj_3R_199 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_115 → NO_COVERAGE 3. jj_3R_199 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_199 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_115()) { |
| 9477 |
3
1. jj_3R_199 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_199 → NO_COVERAGE 2. jj_3R_199 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_199 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9478 | } | |
| 9479 |
3
1. jj_3R_199 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_199 → NO_COVERAGE 2. jj_3R_199 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_199 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9480 | } | |
| 9481 | ||
| 9482 | final private boolean jj_3_32() { | |
| 9483 | Token xsp; | |
| 9484 |
4
1. jj_3_32 : negated conditional → SURVIVED 2. jj_3_32 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_30 → SURVIVED 3. jj_3_32 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_32 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3_30()) { |
| 9485 |
3
1. jj_3_32 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_32 → SURVIVED 2. jj_3_32 : Substituted 1 with 0 → SURVIVED 3. jj_3_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9486 | } while (true) { | |
| 9487 | xsp = jj_scanpos; | |
| 9488 |
4
1. jj_3_32 : negated conditional → NO_COVERAGE 2. jj_3_32 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_30 → NO_COVERAGE 3. jj_3_32 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_32 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_30()) { |
| 9489 |
1
1. jj_3_32 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9490 | break; | |
| 9491 | } | |
| 9492 | } while (true) { | |
| 9493 | xsp = jj_scanpos; | |
| 9494 |
4
1. jj_3_32 : negated conditional → NO_COVERAGE 2. jj_3_32 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_31 → NO_COVERAGE 3. jj_3_32 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_32 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_31()) { |
| 9495 |
1
1. jj_3_32 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9496 | break; | |
| 9497 | } | |
| 9498 | } | |
| 9499 |
3
1. jj_3_32 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_32 → NO_COVERAGE 2. jj_3_32 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9500 | } | |
| 9501 | ||
| 9502 | final private boolean jj_3R_190() { | |
| 9503 | Token xsp; | |
| 9504 | xsp = jj_scanpos; | |
| 9505 |
4
1. jj_3R_190 : negated conditional → NO_COVERAGE 2. jj_3R_190 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_32 → NO_COVERAGE 3. jj_3R_190 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_190 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_32()) { |
| 9506 |
1
1. jj_3R_190 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9507 |
4
1. jj_3R_190 : negated conditional → NO_COVERAGE 2. jj_3R_190 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_199 → NO_COVERAGE 3. jj_3R_190 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_190 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_199()) { |
| 9508 |
3
1. jj_3R_190 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_190 → NO_COVERAGE 2. jj_3R_190 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_190 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9509 | } | |
| 9510 | } | |
| 9511 |
3
1. jj_3R_190 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_190 → NO_COVERAGE 2. jj_3R_190 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_190 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9512 | } | |
| 9513 | ||
| 9514 | final private boolean jj_3R_193() { | |
| 9515 |
4
1. jj_3R_193 : negated conditional → NO_COVERAGE 2. jj_3R_193 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → NO_COVERAGE 3. jj_3R_193 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_193 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_66()) { |
| 9516 |
3
1. jj_3R_193 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_193 → NO_COVERAGE 2. jj_3R_193 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_193 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9517 | } | |
| 9518 | Token xsp; | |
| 9519 | xsp = jj_scanpos; | |
| 9520 |
4
1. jj_3R_193 : negated conditional → NO_COVERAGE 2. jj_3R_193 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_200 → NO_COVERAGE 3. jj_3R_193 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_193 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_200()) { |
| 9521 |
1
1. jj_3R_193 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9522 | } | |
| 9523 |
3
1. jj_3R_193 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_193 → NO_COVERAGE 2. jj_3R_193 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_193 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9524 | } | |
| 9525 | ||
| 9526 | final private boolean jj_3R_135() { | |
| 9527 |
5
1. jj_3R_135 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_135 : negated conditional → NO_COVERAGE 3. jj_3R_135 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_135 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_135 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 9528 |
3
1. jj_3R_135 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_135 → NO_COVERAGE 2. jj_3R_135 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_135 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9529 | } | |
| 9530 |
4
1. jj_3R_135 : negated conditional → NO_COVERAGE 2. jj_3R_135 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_135 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_135 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9531 |
3
1. jj_3R_135 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_135 → NO_COVERAGE 2. jj_3R_135 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_135 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9532 | } | |
| 9533 |
3
1. jj_3R_135 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_135 → NO_COVERAGE 2. jj_3R_135 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_135 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9534 | } | |
| 9535 | ||
| 9536 | final private boolean jj_3R_192() { | |
| 9537 |
4
1. jj_3R_192 : negated conditional → NO_COVERAGE 2. jj_3R_192 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_190 → NO_COVERAGE 3. jj_3R_192 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_192 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_190()) { |
| 9538 |
3
1. jj_3R_192 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_192 → NO_COVERAGE 2. jj_3R_192 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_192 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9539 | } | |
| 9540 |
3
1. jj_3R_192 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_192 → NO_COVERAGE 2. jj_3R_192 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_192 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9541 | } | |
| 9542 | ||
| 9543 | final private boolean jj_3R_105() { | |
| 9544 |
5
1. jj_3R_105 : Substituted 44 with 45 → NO_COVERAGE 2. jj_3R_105 : negated conditional → NO_COVERAGE 3. jj_3R_105 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_105 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_105 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(NEW)) { |
| 9545 |
3
1. jj_3R_105 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_105 → NO_COVERAGE 2. jj_3R_105 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9546 | } | |
| 9547 |
4
1. jj_3R_105 : negated conditional → NO_COVERAGE 2. jj_3R_105 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → NO_COVERAGE 3. jj_3R_105 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_105 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_123()) { |
| 9548 |
3
1. jj_3R_105 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_105 → NO_COVERAGE 2. jj_3R_105 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9549 | } | |
| 9550 | Token xsp; | |
| 9551 | xsp = jj_scanpos; | |
| 9552 |
4
1. jj_3R_105 : negated conditional → NO_COVERAGE 2. jj_3R_105 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_191 → NO_COVERAGE 3. jj_3R_105 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_105 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_191()) { |
| 9553 |
1
1. jj_3R_105 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9554 | } | |
| 9555 | xsp = jj_scanpos; | |
| 9556 |
4
1. jj_3R_105 : negated conditional → NO_COVERAGE 2. jj_3R_105 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_192 → NO_COVERAGE 3. jj_3R_105 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_105 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_192()) { |
| 9557 |
1
1. jj_3R_105 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9558 |
4
1. jj_3R_105 : negated conditional → NO_COVERAGE 2. jj_3R_105 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_193 → NO_COVERAGE 3. jj_3R_105 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_105 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_193()) { |
| 9559 |
3
1. jj_3R_105 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_105 → NO_COVERAGE 2. jj_3R_105 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9560 | } | |
| 9561 | } | |
| 9562 |
3
1. jj_3R_105 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_105 → NO_COVERAGE 2. jj_3R_105 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9563 | } | |
| 9564 | ||
| 9565 | final private boolean jj_3_29() { | |
| 9566 |
5
1. jj_3_29 : Substituted 44 with 45 → SURVIVED 2. jj_3_29 : negated conditional → SURVIVED 3. jj_3_29 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_29 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_29 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(NEW)) { |
| 9567 |
3
1. jj_3_29 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_29 → SURVIVED 2. jj_3_29 : Substituted 1 with 0 → SURVIVED 3. jj_3_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9568 | } | |
| 9569 |
4
1. jj_3_29 : negated conditional → NO_COVERAGE 2. jj_3_29 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_74 → NO_COVERAGE 3. jj_3_29 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_29 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_74()) { |
| 9570 |
3
1. jj_3_29 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_29 → NO_COVERAGE 2. jj_3_29 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9571 | } | |
| 9572 |
4
1. jj_3_29 : negated conditional → NO_COVERAGE 2. jj_3_29 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_190 → NO_COVERAGE 3. jj_3_29 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_29 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_190()) { |
| 9573 |
3
1. jj_3_29 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_29 → NO_COVERAGE 2. jj_3_29 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9574 | } | |
| 9575 |
3
1. jj_3_29 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_29 → NO_COVERAGE 2. jj_3_29 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9576 | } | |
| 9577 | ||
| 9578 | final private boolean jj_3R_77() { | |
| 9579 | Token xsp; | |
| 9580 | xsp = jj_scanpos; | |
| 9581 |
4
1. jj_3R_77 : negated conditional → NO_COVERAGE 2. jj_3R_77 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_29 → NO_COVERAGE 3. jj_3R_77 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_77 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_29()) { |
| 9582 |
1
1. jj_3R_77 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9583 |
4
1. jj_3R_77 : negated conditional → NO_COVERAGE 2. jj_3R_77 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_105 → NO_COVERAGE 3. jj_3R_77 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_77 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_105()) { |
| 9584 |
3
1. jj_3R_77 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_77 → NO_COVERAGE 2. jj_3R_77 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_77 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9585 | } | |
| 9586 | } | |
| 9587 |
3
1. jj_3R_77 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_77 → NO_COVERAGE 2. jj_3R_77 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_77 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9588 | } | |
| 9589 | ||
| 9590 | final private boolean jj_3R_122() { | |
| 9591 |
4
1. jj_3R_122 : negated conditional → NO_COVERAGE 2. jj_3R_122 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_122 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_122 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9592 |
3
1. jj_3R_122 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_122 → NO_COVERAGE 2. jj_3R_122 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_122 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9593 | } | |
| 9594 | Token xsp; | |
| 9595 | while (true) { | |
| 9596 | xsp = jj_scanpos; | |
| 9597 |
4
1. jj_3R_122 : negated conditional → NO_COVERAGE 2. jj_3R_122 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_135 → NO_COVERAGE 3. jj_3R_122 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_122 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_135()) { |
| 9598 |
1
1. jj_3R_122 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9599 | break; | |
| 9600 | } | |
| 9601 | } | |
| 9602 |
3
1. jj_3R_122 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_122 → NO_COVERAGE 2. jj_3R_122 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_122 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9603 | } | |
| 9604 | ||
| 9605 | final private boolean jj_3R_92() { | |
| 9606 |
4
1. jj_3R_92 : negated conditional → NO_COVERAGE 2. jj_3R_92 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_122 → NO_COVERAGE 3. jj_3R_92 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_92 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_122()) { |
| 9607 |
3
1. jj_3R_92 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_92 → NO_COVERAGE 2. jj_3R_92 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_92 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9608 | } | |
| 9609 |
3
1. jj_3R_92 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_92 → NO_COVERAGE 2. jj_3R_92 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_92 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9610 | } | |
| 9611 | ||
| 9612 | final private boolean jj_3R_66() { | |
| 9613 |
5
1. jj_3R_66 : Substituted 77 with 78 → SURVIVED 2. jj_3R_66 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_66 : negated conditional → KILLED 4. jj_3R_66 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_66 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(LPAREN)) { |
| 9614 |
3
1. jj_3R_66 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → KILLED 2. jj_3R_66 : Substituted 1 with 0 → KILLED 3. jj_3R_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9615 | } | |
| 9616 | Token xsp; | |
| 9617 | xsp = jj_scanpos; | |
| 9618 |
4
1. jj_3R_66 : negated conditional → NO_COVERAGE 2. jj_3R_66 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_92 → NO_COVERAGE 3. jj_3R_66 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_66 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_92()) { |
| 9619 |
1
1. jj_3R_66 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9620 | } | |
| 9621 |
5
1. jj_3R_66 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_66 : negated conditional → NO_COVERAGE 3. jj_3R_66 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_66 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_66 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 9622 |
3
1. jj_3R_66 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → NO_COVERAGE 2. jj_3R_66 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9623 | } | |
| 9624 |
3
1. jj_3R_66 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → NO_COVERAGE 2. jj_3R_66 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9625 | } | |
| 9626 | ||
| 9627 | final private boolean jj_3R_149() { | |
| 9628 |
5
1. jj_3R_149 : Substituted 45 with 46 → NO_COVERAGE 2. jj_3R_149 : negated conditional → NO_COVERAGE 3. jj_3R_149 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_149 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_149 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(NULL)) { |
| 9629 |
3
1. jj_3R_149 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_149 → NO_COVERAGE 2. jj_3R_149 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_149 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9630 | } | |
| 9631 |
3
1. jj_3R_149 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_149 → NO_COVERAGE 2. jj_3R_149 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_149 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9632 | } | |
| 9633 | ||
| 9634 | final private boolean jj_3R_148() { | |
| 9635 | Token xsp; | |
| 9636 | xsp = jj_scanpos; | |
| 9637 |
5
1. jj_3R_148 : Substituted 61 with 62 → NO_COVERAGE 2. jj_3R_148 : negated conditional → NO_COVERAGE 3. jj_3R_148 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_148 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_148 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(61)) { |
| 9638 |
1
1. jj_3R_148 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9639 |
5
1. jj_3R_148 : Substituted 30 with 31 → NO_COVERAGE 2. jj_3R_148 : negated conditional → NO_COVERAGE 3. jj_3R_148 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_148 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_148 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(30)) { |
| 9640 |
3
1. jj_3R_148 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_148 → NO_COVERAGE 2. jj_3R_148 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_148 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9641 | } | |
| 9642 | } | |
| 9643 |
3
1. jj_3R_148 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_148 → NO_COVERAGE 2. jj_3R_148 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_148 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9644 | } | |
| 9645 | ||
| 9646 | final private boolean jj_3R_142() { | |
| 9647 |
4
1. jj_3R_142 : negated conditional → NO_COVERAGE 2. jj_3R_142 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_149 → NO_COVERAGE 3. jj_3R_142 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_142 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_149()) { |
| 9648 |
3
1. jj_3R_142 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_142 → NO_COVERAGE 2. jj_3R_142 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_142 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9649 | } | |
| 9650 |
3
1. jj_3R_142 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_142 → NO_COVERAGE 2. jj_3R_142 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_142 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9651 | } | |
| 9652 | ||
| 9653 | final private boolean jj_3R_141() { | |
| 9654 |
4
1. jj_3R_141 : negated conditional → NO_COVERAGE 2. jj_3R_141 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_148 → NO_COVERAGE 3. jj_3R_141 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_141 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_148()) { |
| 9655 |
3
1. jj_3R_141 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_141 → NO_COVERAGE 2. jj_3R_141 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_141 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9656 | } | |
| 9657 |
3
1. jj_3R_141 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_141 → NO_COVERAGE 2. jj_3R_141 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_141 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9658 | } | |
| 9659 | ||
| 9660 | final private boolean jj_3R_127() { | |
| 9661 |
4
1. jj_3R_127 : negated conditional → NO_COVERAGE 2. jj_3R_127 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_134 → NO_COVERAGE 3. jj_3R_127 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_127 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_134()) { |
| 9662 |
3
1. jj_3R_127 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_127 → NO_COVERAGE 2. jj_3R_127 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_127 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9663 | } | |
| 9664 |
3
1. jj_3R_127 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_127 → NO_COVERAGE 2. jj_3R_127 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_127 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9665 | } | |
| 9666 | ||
| 9667 | final private boolean jj_3R_134() { | |
| 9668 | Token xsp; | |
| 9669 | xsp = jj_scanpos; | |
| 9670 |
5
1. jj_3R_134 : Substituted 66 with 67 → NO_COVERAGE 2. jj_3R_134 : negated conditional → NO_COVERAGE 3. jj_3R_134 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_134 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_134 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(66)) { |
| 9671 |
1
1. jj_3R_134 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9672 |
5
1. jj_3R_134 : Substituted 70 with 71 → NO_COVERAGE 2. jj_3R_134 : negated conditional → NO_COVERAGE 3. jj_3R_134 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_134 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_134 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(70)) { |
| 9673 |
1
1. jj_3R_134 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9674 |
5
1. jj_3R_134 : Substituted 72 with 73 → NO_COVERAGE 2. jj_3R_134 : negated conditional → NO_COVERAGE 3. jj_3R_134 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_134 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_134 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(72)) { |
| 9675 |
1
1. jj_3R_134 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9676 |
5
1. jj_3R_134 : Substituted 73 with 74 → NO_COVERAGE 2. jj_3R_134 : negated conditional → NO_COVERAGE 3. jj_3R_134 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_134 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_134 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(73)) { |
| 9677 |
1
1. jj_3R_134 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9678 |
4
1. jj_3R_134 : negated conditional → NO_COVERAGE 2. jj_3R_134 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_141 → NO_COVERAGE 3. jj_3R_134 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_134 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_141()) { |
| 9679 |
1
1. jj_3R_134 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9680 |
4
1. jj_3R_134 : negated conditional → NO_COVERAGE 2. jj_3R_134 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_142 → NO_COVERAGE 3. jj_3R_134 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_134 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_142()) { |
| 9681 |
3
1. jj_3R_134 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_134 → NO_COVERAGE 2. jj_3R_134 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_134 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9682 | } | |
| 9683 | } | |
| 9684 | } | |
| 9685 | } | |
| 9686 | } | |
| 9687 | } | |
| 9688 |
3
1. jj_3R_134 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_134 → NO_COVERAGE 2. jj_3R_134 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_134 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9689 | } | |
| 9690 | ||
| 9691 | final private boolean jj_3R_103() { | |
| 9692 |
4
1. jj_3R_103 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_103 : negated conditional → KILLED 3. jj_3R_103 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_66 → KILLED 4. jj_3R_103 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_66()) { |
| 9693 |
3
1. jj_3R_103 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_103 → KILLED 2. jj_3R_103 : Substituted 1 with 0 → KILLED 3. jj_3R_103 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9694 | } | |
| 9695 |
3
1. jj_3R_103 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_103 → NO_COVERAGE 2. jj_3R_103 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_103 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9696 | } | |
| 9697 | ||
| 9698 | final private boolean jj_3R_102() { | |
| 9699 |
5
1. jj_3R_102 : Substituted 85 with 86 → SURVIVED 2. jj_3R_102 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3R_102 : negated conditional → KILLED 4. jj_3R_102 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_102 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(DOT)) { |
| 9700 |
3
1. jj_3R_102 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_102 → KILLED 2. jj_3R_102 : Substituted 1 with 0 → KILLED 3. jj_3R_102 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9701 | } | |
| 9702 |
5
1. jj_3R_102 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_102 : negated conditional → NO_COVERAGE 3. jj_3R_102 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_102 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_102 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 9703 |
3
1. jj_3R_102 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_102 → NO_COVERAGE 2. jj_3R_102 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_102 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9704 | } | |
| 9705 |
3
1. jj_3R_102 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_102 → NO_COVERAGE 2. jj_3R_102 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_102 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9706 | } | |
| 9707 | ||
| 9708 | final private boolean jj_3R_101() { | |
| 9709 |
5
1. jj_3R_101 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_101 : Substituted 81 with 82 → KILLED 3. jj_3R_101 : negated conditional → KILLED 4. jj_3R_101 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3R_101 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(LBRACKET)) { |
| 9710 |
3
1. jj_3R_101 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_101 → KILLED 2. jj_3R_101 : Substituted 1 with 0 → KILLED 3. jj_3R_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9711 | } | |
| 9712 |
4
1. jj_3R_101 : negated conditional → NO_COVERAGE 2. jj_3R_101 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_101 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_101 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9713 |
3
1. jj_3R_101 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_101 → NO_COVERAGE 2. jj_3R_101 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9714 | } | |
| 9715 |
5
1. jj_3R_101 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3R_101 : negated conditional → NO_COVERAGE 3. jj_3R_101 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_101 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_101 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 9716 |
3
1. jj_3R_101 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_101 → NO_COVERAGE 2. jj_3R_101 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9717 | } | |
| 9718 |
3
1. jj_3R_101 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_101 → NO_COVERAGE 2. jj_3R_101 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9719 | } | |
| 9720 | ||
| 9721 | final private boolean jj_3_28() { | |
| 9722 |
4
1. jj_3_28 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_28 : negated conditional → KILLED 3. jj_3_28 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_78 → KILLED 4. jj_3_28 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_78()) { |
| 9723 |
3
1. jj_3_28 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_28 → KILLED 2. jj_3_28 : Substituted 1 with 0 → KILLED 3. jj_3_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9724 | } | |
| 9725 |
3
1. jj_3_28 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_28 → NO_COVERAGE 2. jj_3_28 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9726 | } | |
| 9727 | ||
| 9728 | final private boolean jj_3_27() { | |
| 9729 |
5
1. jj_3_27 : Substituted 85 with 86 → SURVIVED 2. jj_3_27 : negated conditional → SURVIVED 3. jj_3_27 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_27 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_27 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(DOT)) { |
| 9730 |
3
1. jj_3_27 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_27 → KILLED 2. jj_3_27 : Substituted 1 with 0 → KILLED 3. jj_3_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9731 | } | |
| 9732 |
4
1. jj_3_27 : negated conditional → NO_COVERAGE 2. jj_3_27 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_77 → NO_COVERAGE 3. jj_3_27 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_27 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_77()) { |
| 9733 |
3
1. jj_3_27 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_27 → NO_COVERAGE 2. jj_3_27 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9734 | } | |
| 9735 |
3
1. jj_3_27 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_27 → NO_COVERAGE 2. jj_3_27 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9736 | } | |
| 9737 | ||
| 9738 | final private boolean jj_3_25() { | |
| 9739 |
4
1. jj_3_25 : negated conditional → SURVIVED 2. jj_3_25 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_76 → SURVIVED 3. jj_3_25 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_25 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_76()) { |
| 9740 |
3
1. jj_3_25 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_25 → SURVIVED 2. jj_3_25 : Substituted 1 with 0 → SURVIVED 3. jj_3_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9741 | } | |
| 9742 |
5
1. jj_3_25 : Substituted 85 with 86 → SURVIVED 2. jj_3_25 : negated conditional → SURVIVED 3. jj_3_25 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_25 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_25 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(DOT)) { |
| 9743 |
3
1. jj_3_25 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_25 → KILLED 2. jj_3_25 : Substituted 1 with 0 → KILLED 3. jj_3_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9744 | } | |
| 9745 |
5
1. jj_3_25 : Substituted 21 with 22 → NO_COVERAGE 2. jj_3_25 : negated conditional → NO_COVERAGE 3. jj_3_25 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_25 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_25 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(CLASS)) { |
| 9746 |
3
1. jj_3_25 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_25 → NO_COVERAGE 2. jj_3_25 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9747 | } | |
| 9748 |
3
1. jj_3_25 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_25 → NO_COVERAGE 2. jj_3_25 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9749 | } | |
| 9750 | ||
| 9751 | final private boolean jj_3_26() { | |
| 9752 |
5
1. jj_3_26 : Substituted 85 with 86 → SURVIVED 2. jj_3_26 : negated conditional → SURVIVED 3. jj_3_26 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_26 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_26 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(DOT)) { |
| 9753 |
3
1. jj_3_26 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_26 → KILLED 2. jj_3_26 : Substituted 1 with 0 → KILLED 3. jj_3_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9754 | } | |
| 9755 |
5
1. jj_3_26 : Substituted 57 with 58 → NO_COVERAGE 2. jj_3_26 : negated conditional → NO_COVERAGE 3. jj_3_26 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_26 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_26 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(THIS)) { |
| 9756 |
3
1. jj_3_26 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_26 → NO_COVERAGE 2. jj_3_26 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9757 | } | |
| 9758 |
3
1. jj_3_26 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_26 → NO_COVERAGE 2. jj_3_26 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9759 | } | |
| 9760 | ||
| 9761 | final private boolean jj_3R_75() { | |
| 9762 | Token xsp; | |
| 9763 | xsp = jj_scanpos; | |
| 9764 |
4
1. jj_3R_75 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_75 : negated conditional → KILLED 3. jj_3R_75 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_26 → KILLED 4. jj_3R_75 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_26()) { |
| 9765 |
1
1. jj_3R_75 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 9766 |
4
1. jj_3R_75 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_75 : negated conditional → KILLED 3. jj_3R_75 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_27 → KILLED 4. jj_3R_75 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_27()) { |
| 9767 |
1
1. jj_3R_75 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 9768 |
4
1. jj_3R_75 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_75 : negated conditional → KILLED 3. jj_3R_75 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_28 → KILLED 4. jj_3R_75 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_28()) { |
| 9769 |
1
1. jj_3R_75 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 9770 |
4
1. jj_3R_75 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_75 : negated conditional → KILLED 3. jj_3R_75 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_101 → KILLED 4. jj_3R_75 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_101()) { |
| 9771 |
1
1. jj_3R_75 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 9772 |
4
1. jj_3R_75 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_75 : negated conditional → KILLED 3. jj_3R_75 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_102 → KILLED 4. jj_3R_75 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_102()) { |
| 9773 |
1
1. jj_3R_75 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 9774 |
4
1. jj_3R_75 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_75 : negated conditional → KILLED 3. jj_3R_75 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_103 → KILLED 4. jj_3R_75 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_103()) { |
| 9775 |
3
1. jj_3R_75 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_75 → KILLED 2. jj_3R_75 : Substituted 1 with 0 → KILLED 3. jj_3R_75 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9776 | } | |
| 9777 | } | |
| 9778 | } | |
| 9779 | } | |
| 9780 | } | |
| 9781 | } | |
| 9782 |
3
1. jj_3R_75 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_75 → NO_COVERAGE 2. jj_3R_75 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_75 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9783 | } | |
| 9784 | ||
| 9785 | final private boolean jj_3R_121() { | |
| 9786 |
4
1. jj_3R_121 : negated conditional → NO_COVERAGE 2. jj_3R_121 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3R_121 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_121 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 9787 |
3
1. jj_3R_121 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_121 → NO_COVERAGE 2. jj_3R_121 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_121 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9788 | } | |
| 9789 |
3
1. jj_3R_121 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_121 → NO_COVERAGE 2. jj_3R_121 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_121 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9790 | } | |
| 9791 | ||
| 9792 | final private boolean jj_3R_120() { | |
| 9793 |
4
1. jj_3R_120 : negated conditional → NO_COVERAGE 2. jj_3R_120 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_76 → NO_COVERAGE 3. jj_3R_120 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_120 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_76()) { |
| 9794 |
3
1. jj_3R_120 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_120 → NO_COVERAGE 2. jj_3R_120 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9795 | } | |
| 9796 |
5
1. jj_3R_120 : Substituted 85 with 86 → NO_COVERAGE 2. jj_3R_120 : negated conditional → NO_COVERAGE 3. jj_3R_120 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_120 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_120 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(DOT)) { |
| 9797 |
3
1. jj_3R_120 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_120 → NO_COVERAGE 2. jj_3R_120 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9798 | } | |
| 9799 |
5
1. jj_3R_120 : Substituted 21 with 22 → NO_COVERAGE 2. jj_3R_120 : negated conditional → NO_COVERAGE 3. jj_3R_120 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_120 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_120 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(CLASS)) { |
| 9800 |
3
1. jj_3R_120 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_120 → NO_COVERAGE 2. jj_3R_120 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9801 | } | |
| 9802 |
3
1. jj_3R_120 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_120 → NO_COVERAGE 2. jj_3R_120 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9803 | } | |
| 9804 | ||
| 9805 | final private boolean jj_3R_119() { | |
| 9806 |
4
1. jj_3R_119 : negated conditional → NO_COVERAGE 2. jj_3R_119 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_77 → NO_COVERAGE 3. jj_3R_119 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_119 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_77()) { |
| 9807 |
3
1. jj_3R_119 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_119 → NO_COVERAGE 2. jj_3R_119 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_119 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9808 | } | |
| 9809 |
3
1. jj_3R_119 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_119 → NO_COVERAGE 2. jj_3R_119 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_119 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9810 | } | |
| 9811 | ||
| 9812 | final private boolean jj_3R_118() { | |
| 9813 |
5
1. jj_3R_118 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_118 : negated conditional → NO_COVERAGE 3. jj_3R_118 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_118 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_118 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 9814 |
3
1. jj_3R_118 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_118 → NO_COVERAGE 2. jj_3R_118 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9815 | } | |
| 9816 |
4
1. jj_3R_118 : negated conditional → NO_COVERAGE 2. jj_3R_118 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_118 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_118 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 9817 |
3
1. jj_3R_118 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_118 → NO_COVERAGE 2. jj_3R_118 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9818 | } | |
| 9819 |
5
1. jj_3R_118 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_118 : negated conditional → NO_COVERAGE 3. jj_3R_118 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_118 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_118 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 9820 |
3
1. jj_3R_118 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_118 → NO_COVERAGE 2. jj_3R_118 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9821 | } | |
| 9822 |
3
1. jj_3R_118 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_118 → NO_COVERAGE 2. jj_3R_118 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9823 | } | |
| 9824 | ||
| 9825 | final private boolean jj_3_24() { | |
| 9826 |
4
1. jj_3_24 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_24 : negated conditional → KILLED 3. jj_3_24 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_75 → KILLED 4. jj_3_24 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_75()) { |
| 9827 |
3
1. jj_3_24 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_24 → KILLED 2. jj_3_24 : Substituted 1 with 0 → KILLED 3. jj_3_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9828 | } | |
| 9829 |
3
1. jj_3_24 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_24 → NO_COVERAGE 2. jj_3_24 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9830 | } | |
| 9831 | ||
| 9832 | final private boolean jj_3R_117() { | |
| 9833 |
5
1. jj_3R_117 : Substituted 54 with 55 → NO_COVERAGE 2. jj_3R_117 : negated conditional → NO_COVERAGE 3. jj_3R_117 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_117 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_117 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SUPER)) { |
| 9834 |
3
1. jj_3R_117 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_117 → NO_COVERAGE 2. jj_3R_117 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9835 | } | |
| 9836 |
5
1. jj_3R_117 : Substituted 85 with 86 → NO_COVERAGE 2. jj_3R_117 : negated conditional → NO_COVERAGE 3. jj_3R_117 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_117 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_117 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(DOT)) { |
| 9837 |
3
1. jj_3R_117 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_117 → NO_COVERAGE 2. jj_3R_117 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9838 | } | |
| 9839 |
5
1. jj_3R_117 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_117 : negated conditional → NO_COVERAGE 3. jj_3R_117 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_117 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_117 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 9840 |
3
1. jj_3R_117 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_117 → NO_COVERAGE 2. jj_3R_117 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9841 | } | |
| 9842 |
3
1. jj_3R_117 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_117 → NO_COVERAGE 2. jj_3R_117 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9843 | } | |
| 9844 | ||
| 9845 | final private boolean jj_3R_116() { | |
| 9846 |
4
1. jj_3R_116 : negated conditional → NO_COVERAGE 2. jj_3R_116 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_134 → NO_COVERAGE 3. jj_3R_116 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_116 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_134()) { |
| 9847 |
3
1. jj_3R_116 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_116 → NO_COVERAGE 2. jj_3R_116 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_116 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9848 | } | |
| 9849 |
3
1. jj_3R_116 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_116 → NO_COVERAGE 2. jj_3R_116 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_116 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9850 | } | |
| 9851 | ||
| 9852 | final private boolean jj_3R_91() { | |
| 9853 | Token xsp; | |
| 9854 | xsp = jj_scanpos; | |
| 9855 |
4
1. jj_3R_91 : negated conditional → NO_COVERAGE 2. jj_3R_91 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_116 → NO_COVERAGE 3. jj_3R_91 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_91 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_116()) { |
| 9856 |
1
1. jj_3R_91 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9857 |
5
1. jj_3R_91 : Substituted 57 with 58 → NO_COVERAGE 2. jj_3R_91 : negated conditional → NO_COVERAGE 3. jj_3R_91 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_91 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_91 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(57)) { |
| 9858 |
1
1. jj_3R_91 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9859 |
4
1. jj_3R_91 : negated conditional → NO_COVERAGE 2. jj_3R_91 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_117 → NO_COVERAGE 3. jj_3R_91 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_91 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_117()) { |
| 9860 |
1
1. jj_3R_91 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9861 |
4
1. jj_3R_91 : negated conditional → NO_COVERAGE 2. jj_3R_91 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_118 → NO_COVERAGE 3. jj_3R_91 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_91 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_118()) { |
| 9862 |
1
1. jj_3R_91 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9863 |
4
1. jj_3R_91 : negated conditional → NO_COVERAGE 2. jj_3R_91 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_119 → NO_COVERAGE 3. jj_3R_91 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_91 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_119()) { |
| 9864 |
1
1. jj_3R_91 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9865 |
4
1. jj_3R_91 : negated conditional → NO_COVERAGE 2. jj_3R_91 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_120 → NO_COVERAGE 3. jj_3R_91 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_91 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_120()) { |
| 9866 |
1
1. jj_3R_91 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9867 |
4
1. jj_3R_91 : negated conditional → NO_COVERAGE 2. jj_3R_91 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_121 → NO_COVERAGE 3. jj_3R_91 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_91 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_121()) { |
| 9868 |
3
1. jj_3R_91 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_91 → NO_COVERAGE 2. jj_3R_91 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_91 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9869 | } | |
| 9870 | } | |
| 9871 | } | |
| 9872 | } | |
| 9873 | } | |
| 9874 | } | |
| 9875 | } | |
| 9876 |
3
1. jj_3R_91 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_91 → NO_COVERAGE 2. jj_3R_91 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_91 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9877 | } | |
| 9878 | ||
| 9879 | final private boolean jj_3R_282() { | |
| 9880 | Token xsp; | |
| 9881 | xsp = jj_scanpos; | |
| 9882 |
5
1. jj_3R_282 : Substituted 99 with 100 → NO_COVERAGE 2. jj_3R_282 : negated conditional → NO_COVERAGE 3. jj_3R_282 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_282 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_282 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(99)) { |
| 9883 |
1
1. jj_3R_282 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9884 |
5
1. jj_3R_282 : Substituted 100 with 101 → NO_COVERAGE 2. jj_3R_282 : negated conditional → NO_COVERAGE 3. jj_3R_282 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_282 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_282 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(100)) { |
| 9885 |
3
1. jj_3R_282 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_282 → NO_COVERAGE 2. jj_3R_282 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_282 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9886 | } | |
| 9887 | } | |
| 9888 |
3
1. jj_3R_282 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_282 → NO_COVERAGE 2. jj_3R_282 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_282 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9889 | } | |
| 9890 | ||
| 9891 | final private boolean jj_3R_78() { | |
| 9892 |
5
1. jj_3R_78 : Substituted 85 with 86 → SURVIVED 2. jj_3R_78 : negated conditional → SURVIVED 3. jj_3R_78 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_78 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_78 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(DOT)) { |
| 9893 |
3
1. jj_3R_78 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_78 → KILLED 2. jj_3R_78 : Substituted 1 with 0 → KILLED 3. jj_3R_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 9894 | } | |
| 9895 |
4
1. jj_3R_78 : negated conditional → NO_COVERAGE 2. jj_3R_78 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → NO_COVERAGE 3. jj_3R_78 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_78 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_68()) { |
| 9896 |
3
1. jj_3R_78 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_78 → NO_COVERAGE 2. jj_3R_78 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9897 | } | |
| 9898 |
5
1. jj_3R_78 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_78 : negated conditional → NO_COVERAGE 3. jj_3R_78 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_78 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_78 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 9899 |
3
1. jj_3R_78 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_78 → NO_COVERAGE 2. jj_3R_78 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9900 | } | |
| 9901 |
3
1. jj_3R_78 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_78 → NO_COVERAGE 2. jj_3R_78 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9902 | } | |
| 9903 | ||
| 9904 | final private boolean jj_3_23() { | |
| 9905 |
5
1. jj_3_23 : Substituted 77 with 78 → SURVIVED 2. jj_3_23 : negated conditional → SURVIVED 3. jj_3_23 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_23 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_23 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LPAREN)) { |
| 9906 |
3
1. jj_3_23 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_23 → SURVIVED 2. jj_3_23 : Substituted 1 with 0 → SURVIVED 3. jj_3_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9907 | } | |
| 9908 |
4
1. jj_3_23 : negated conditional → NO_COVERAGE 2. jj_3_23 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_74 → NO_COVERAGE 3. jj_3_23 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_23 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_74()) { |
| 9909 |
3
1. jj_3_23 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_23 → NO_COVERAGE 2. jj_3_23 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9910 | } | |
| 9911 |
3
1. jj_3_23 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_23 → NO_COVERAGE 2. jj_3_23 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9912 | } | |
| 9913 | ||
| 9914 | final private boolean jj_3R_65() { | |
| 9915 |
4
1. jj_3R_65 : negated conditional → NO_COVERAGE 2. jj_3R_65 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_91 → NO_COVERAGE 3. jj_3R_65 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_65 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_91()) { |
| 9916 |
3
1. jj_3R_65 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_65 → NO_COVERAGE 2. jj_3R_65 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_65 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9917 | } | |
| 9918 | Token xsp; | |
| 9919 | while (true) { | |
| 9920 | xsp = jj_scanpos; | |
| 9921 |
4
1. jj_3R_65 : negated conditional → NO_COVERAGE 2. jj_3R_65 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_24 → NO_COVERAGE 3. jj_3R_65 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_65 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_24()) { |
| 9922 |
1
1. jj_3R_65 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9923 | break; | |
| 9924 | } | |
| 9925 | } | |
| 9926 |
3
1. jj_3R_65 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_65 → NO_COVERAGE 2. jj_3R_65 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_65 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9927 | } | |
| 9928 | ||
| 9929 | final private boolean jj_3R_278() { | |
| 9930 |
5
1. jj_3R_278 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_278 : negated conditional → NO_COVERAGE 3. jj_3R_278 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_278 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_278 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 9931 |
3
1. jj_3R_278 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_278 → NO_COVERAGE 2. jj_3R_278 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_278 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9932 | } | |
| 9933 |
4
1. jj_3R_278 : negated conditional → NO_COVERAGE 2. jj_3R_278 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3R_278 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_278 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 9934 |
3
1. jj_3R_278 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_278 → NO_COVERAGE 2. jj_3R_278 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_278 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9935 | } | |
| 9936 |
5
1. jj_3R_278 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_278 : negated conditional → NO_COVERAGE 3. jj_3R_278 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_278 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_278 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 9937 |
3
1. jj_3R_278 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_278 → NO_COVERAGE 2. jj_3R_278 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_278 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9938 | } | |
| 9939 |
4
1. jj_3R_278 : negated conditional → NO_COVERAGE 2. jj_3R_278 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_235 → NO_COVERAGE 3. jj_3R_278 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_278 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_235()) { |
| 9940 |
3
1. jj_3R_278 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_278 → NO_COVERAGE 2. jj_3R_278 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_278 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9941 | } | |
| 9942 |
3
1. jj_3R_278 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_278 → NO_COVERAGE 2. jj_3R_278 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_278 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9943 | } | |
| 9944 | ||
| 9945 | final private boolean jj_3R_277() { | |
| 9946 |
5
1. jj_3R_277 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_277 : negated conditional → NO_COVERAGE 3. jj_3R_277 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_277 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_277 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LPAREN)) { |
| 9947 |
3
1. jj_3R_277 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_277 → NO_COVERAGE 2. jj_3R_277 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_277 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9948 | } | |
| 9949 |
4
1. jj_3R_277 : negated conditional → NO_COVERAGE 2. jj_3R_277 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3R_277 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_277 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 9950 |
3
1. jj_3R_277 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_277 → NO_COVERAGE 2. jj_3R_277 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_277 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9951 | } | |
| 9952 |
5
1. jj_3R_277 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_277 : negated conditional → NO_COVERAGE 3. jj_3R_277 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_277 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_277 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 9953 |
3
1. jj_3R_277 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_277 → NO_COVERAGE 2. jj_3R_277 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_277 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9954 | } | |
| 9955 |
4
1. jj_3R_277 : negated conditional → NO_COVERAGE 2. jj_3R_277 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_219 → NO_COVERAGE 3. jj_3R_277 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_277 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_219()) { |
| 9956 |
3
1. jj_3R_277 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_277 → NO_COVERAGE 2. jj_3R_277 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_277 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9957 | } | |
| 9958 |
3
1. jj_3R_277 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_277 → NO_COVERAGE 2. jj_3R_277 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_277 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9959 | } | |
| 9960 | ||
| 9961 | final private boolean jj_3R_266() { | |
| 9962 | Token xsp; | |
| 9963 | xsp = jj_scanpos; | |
| 9964 |
4
1. jj_3R_266 : negated conditional → NO_COVERAGE 2. jj_3R_266 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_277 → NO_COVERAGE 3. jj_3R_266 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_266 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_277()) { |
| 9965 |
1
1. jj_3R_266 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9966 |
4
1. jj_3R_266 : negated conditional → NO_COVERAGE 2. jj_3R_266 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_278 → NO_COVERAGE 3. jj_3R_266 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_266 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_278()) { |
| 9967 |
3
1. jj_3R_266 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_266 → NO_COVERAGE 2. jj_3R_266 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_266 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9968 | } | |
| 9969 | } | |
| 9970 |
3
1. jj_3R_266 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_266 → NO_COVERAGE 2. jj_3R_266 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_266 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9971 | } | |
| 9972 | ||
| 9973 | final private boolean jj_3_22() { | |
| 9974 |
5
1. jj_3_22 : Substituted 77 with 78 → SURVIVED 2. jj_3_22 : negated conditional → SURVIVED 3. jj_3_22 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_22 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_22 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LPAREN)) { |
| 9975 |
3
1. jj_3_22 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_22 → NO_COVERAGE 2. jj_3_22 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9976 | } | |
| 9977 |
4
1. jj_3_22 : negated conditional → SURVIVED 2. jj_3_22 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → SURVIVED 3. jj_3_22 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_22 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_60()) { |
| 9978 |
3
1. jj_3_22 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_22 → SURVIVED 2. jj_3_22 : Substituted 1 with 0 → SURVIVED 3. jj_3_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 9979 | } | |
| 9980 |
5
1. jj_3_22 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3_22 : negated conditional → NO_COVERAGE 3. jj_3_22 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_22 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_22 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 9981 |
3
1. jj_3_22 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_22 → NO_COVERAGE 2. jj_3_22 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9982 | } | |
| 9983 |
3
1. jj_3_22 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_22 → NO_COVERAGE 2. jj_3_22 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9984 | } | |
| 9985 | ||
| 9986 | final private boolean jj_3R_267() { | |
| 9987 |
4
1. jj_3R_267 : negated conditional → NO_COVERAGE 2. jj_3R_267 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_65 → NO_COVERAGE 3. jj_3R_267 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_267 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_65()) { |
| 9988 |
3
1. jj_3R_267 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_267 → NO_COVERAGE 2. jj_3R_267 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_267 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 9989 | } | |
| 9990 | Token xsp; | |
| 9991 | xsp = jj_scanpos; | |
| 9992 |
4
1. jj_3R_267 : negated conditional → NO_COVERAGE 2. jj_3R_267 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_282 → NO_COVERAGE 3. jj_3R_267 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_267 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_282()) { |
| 9993 |
1
1. jj_3R_267 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 9994 | } | |
| 9995 |
3
1. jj_3R_267 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_267 → NO_COVERAGE 2. jj_3R_267 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_267 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 9996 | } | |
| 9997 | ||
| 9998 | final private boolean jj_3R_100() { | |
| 9999 |
5
1. jj_3R_100 : Substituted 77 with 78 → SURVIVED 2. jj_3R_100 : negated conditional → SURVIVED 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_100 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_100 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LPAREN)) { |
| 10000 |
3
1. jj_3R_100 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_100 → KILLED 2. jj_3R_100 : Substituted 1 with 0 → KILLED 3. jj_3R_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10001 | } | |
| 10002 |
4
1. jj_3R_100 : negated conditional → SURVIVED 2. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → SURVIVED 3. jj_3R_100 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_100 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_60()) { |
| 10003 |
3
1. jj_3R_100 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_100 → SURVIVED 2. jj_3R_100 : Substituted 1 with 0 → SURVIVED 3. jj_3R_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10004 | } | |
| 10005 |
5
1. jj_3R_100 : Substituted 78 with 79 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RPAREN)) { |
| 10006 |
3
1. jj_3R_100 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_100 → NO_COVERAGE 2. jj_3R_100 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10007 | } | |
| 10008 | Token xsp; | |
| 10009 | xsp = jj_scanpos; | |
| 10010 |
5
1. jj_3R_100 : Substituted 90 with 91 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(90)) { |
| 10011 |
1
1. jj_3R_100 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10012 |
5
1. jj_3R_100 : Substituted 89 with 90 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(89)) { |
| 10013 |
1
1. jj_3R_100 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10014 |
5
1. jj_3R_100 : Substituted 77 with 78 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(77)) { |
| 10015 |
1
1. jj_3R_100 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10016 |
5
1. jj_3R_100 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(74)) { |
| 10017 |
1
1. jj_3R_100 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10018 |
5
1. jj_3R_100 : Substituted 57 with 58 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(57)) { |
| 10019 |
1
1. jj_3R_100 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10020 |
5
1. jj_3R_100 : Substituted 54 with 55 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(54)) { |
| 10021 |
1
1. jj_3R_100 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10022 |
5
1. jj_3R_100 : Substituted 44 with 45 → NO_COVERAGE 2. jj_3R_100 : negated conditional → NO_COVERAGE 3. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(44)) { |
| 10023 |
1
1. jj_3R_100 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10024 |
4
1. jj_3R_100 : negated conditional → NO_COVERAGE 2. jj_3R_100 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_127 → NO_COVERAGE 3. jj_3R_100 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_100 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_127()) { |
| 10025 |
3
1. jj_3R_100 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_100 → NO_COVERAGE 2. jj_3R_100 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10026 | } | |
| 10027 | } | |
| 10028 | } | |
| 10029 | } | |
| 10030 | } | |
| 10031 | } | |
| 10032 | } | |
| 10033 | } | |
| 10034 |
3
1. jj_3R_100 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_100 → NO_COVERAGE 2. jj_3R_100 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10035 | } | |
| 10036 | ||
| 10037 | final private boolean jj_3R_99() { | |
| 10038 |
5
1. jj_3R_99 : Substituted 77 with 78 → SURVIVED 2. jj_3R_99 : negated conditional → SURVIVED 3. jj_3R_99 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_99 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_99 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LPAREN)) { |
| 10039 |
3
1. jj_3R_99 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_99 → KILLED 2. jj_3R_99 : Substituted 1 with 0 → KILLED 3. jj_3R_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10040 | } | |
| 10041 |
4
1. jj_3R_99 : negated conditional → SURVIVED 2. jj_3R_99 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → SURVIVED 3. jj_3R_99 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_99 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_60()) { |
| 10042 |
3
1. jj_3R_99 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_99 → SURVIVED 2. jj_3R_99 : Substituted 1 with 0 → SURVIVED 3. jj_3R_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10043 | } | |
| 10044 |
5
1. jj_3R_99 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3R_99 : negated conditional → NO_COVERAGE 3. jj_3R_99 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_99 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_99 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 10045 |
3
1. jj_3R_99 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_99 → NO_COVERAGE 2. jj_3R_99 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10046 | } | |
| 10047 |
5
1. jj_3R_99 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3R_99 : negated conditional → NO_COVERAGE 3. jj_3R_99 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_99 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_99 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 10048 |
3
1. jj_3R_99 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_99 → NO_COVERAGE 2. jj_3R_99 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10049 | } | |
| 10050 |
3
1. jj_3R_99 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_99 → NO_COVERAGE 2. jj_3R_99 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10051 | } | |
| 10052 | ||
| 10053 | final private boolean jj_3_21() { | |
| 10054 |
5
1. jj_3_21 : Substituted 77 with 78 → SURVIVED 2. jj_3_21 : negated conditional → SURVIVED 3. jj_3_21 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_21 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_21 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LPAREN)) { |
| 10055 |
3
1. jj_3_21 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_21 → KILLED 2. jj_3_21 : Substituted 1 with 0 → KILLED 3. jj_3_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10056 | } | |
| 10057 |
4
1. jj_3_21 : negated conditional → SURVIVED 2. jj_3_21 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_74 → SURVIVED 3. jj_3_21 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_21 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_74()) { |
| 10058 |
3
1. jj_3_21 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_21 → SURVIVED 2. jj_3_21 : Substituted 1 with 0 → SURVIVED 3. jj_3_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10059 | } | |
| 10060 |
3
1. jj_3_21 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_21 → NO_COVERAGE 2. jj_3_21 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10061 | } | |
| 10062 | ||
| 10063 | final private boolean jj_3R_73() { | |
| 10064 | Token xsp; | |
| 10065 | xsp = jj_scanpos; | |
| 10066 |
4
1. jj_3R_73 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_73 : negated conditional → KILLED 3. jj_3R_73 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_21 → KILLED 4. jj_3R_73 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_21()) { |
| 10067 |
1
1. jj_3R_73 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10068 |
4
1. jj_3R_73 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_73 : negated conditional → KILLED 3. jj_3R_73 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_99 → KILLED 4. jj_3R_73 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_99()) { |
| 10069 |
1
1. jj_3R_73 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10070 |
4
1. jj_3R_73 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_73 : negated conditional → KILLED 3. jj_3R_73 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_100 → KILLED 4. jj_3R_73 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_100()) { |
| 10071 |
3
1. jj_3R_73 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_73 → KILLED 2. jj_3R_73 : Substituted 1 with 0 → KILLED 3. jj_3R_73 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10072 | } | |
| 10073 | } | |
| 10074 | } | |
| 10075 |
3
1. jj_3R_73 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_73 → NO_COVERAGE 2. jj_3R_73 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_73 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10076 | } | |
| 10077 | ||
| 10078 | final private boolean jj_3_20() { | |
| 10079 |
4
1. jj_3_20 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_20 : negated conditional → KILLED 3. jj_3_20 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_73 → KILLED 4. jj_3_20 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_73()) { |
| 10080 |
3
1. jj_3_20 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_20 → KILLED 2. jj_3_20 : Substituted 1 with 0 → KILLED 3. jj_3_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10081 | } | |
| 10082 |
3
1. jj_3_20 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_20 → NO_COVERAGE 2. jj_3_20 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10083 | } | |
| 10084 | ||
| 10085 | final private boolean jj_3_19() { | |
| 10086 |
4
1. jj_3_19 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_19 : negated conditional → KILLED 3. jj_3_19 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_72 → KILLED 4. jj_3_19 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_72()) { |
| 10087 |
3
1. jj_3_19 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_19 → KILLED 2. jj_3_19 : Substituted 1 with 0 → KILLED 3. jj_3_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10088 | } | |
| 10089 |
3
1. jj_3_19 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_19 → NO_COVERAGE 2. jj_3_19 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10090 | } | |
| 10091 | ||
| 10092 | final private boolean jj_3R_255() { | |
| 10093 |
4
1. jj_3R_255 : negated conditional → NO_COVERAGE 2. jj_3R_255 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_267 → NO_COVERAGE 3. jj_3R_255 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_255 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_267()) { |
| 10094 |
3
1. jj_3R_255 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_255 → NO_COVERAGE 2. jj_3R_255 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_255 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10095 | } | |
| 10096 |
3
1. jj_3R_255 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_255 → NO_COVERAGE 2. jj_3R_255 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_255 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10097 | } | |
| 10098 | ||
| 10099 | final private boolean jj_3R_254() { | |
| 10100 |
4
1. jj_3R_254 : negated conditional → NO_COVERAGE 2. jj_3R_254 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_266 → NO_COVERAGE 3. jj_3R_254 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_254 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_266()) { |
| 10101 |
3
1. jj_3R_254 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_254 → NO_COVERAGE 2. jj_3R_254 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_254 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10102 | } | |
| 10103 |
3
1. jj_3R_254 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_254 → NO_COVERAGE 2. jj_3R_254 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_254 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10104 | } | |
| 10105 | ||
| 10106 | final private boolean jj_3R_235() { | |
| 10107 | Token xsp; | |
| 10108 | xsp = jj_scanpos; | |
| 10109 |
4
1. jj_3R_235 : negated conditional → NO_COVERAGE 2. jj_3R_235 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_253 → NO_COVERAGE 3. jj_3R_235 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_235 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_253()) { |
| 10110 |
1
1. jj_3R_235 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10111 |
4
1. jj_3R_235 : negated conditional → NO_COVERAGE 2. jj_3R_235 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_254 → NO_COVERAGE 3. jj_3R_235 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_235 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_254()) { |
| 10112 |
1
1. jj_3R_235 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10113 |
4
1. jj_3R_235 : negated conditional → NO_COVERAGE 2. jj_3R_235 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_255 → NO_COVERAGE 3. jj_3R_235 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_235 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_255()) { |
| 10114 |
3
1. jj_3R_235 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_235 → NO_COVERAGE 2. jj_3R_235 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_235 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10115 | } | |
| 10116 | } | |
| 10117 | } | |
| 10118 |
3
1. jj_3R_235 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_235 → NO_COVERAGE 2. jj_3R_235 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_235 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10119 | } | |
| 10120 | ||
| 10121 | final private boolean jj_3R_253() { | |
| 10122 | Token xsp; | |
| 10123 | xsp = jj_scanpos; | |
| 10124 |
5
1. jj_3R_253 : Substituted 90 with 91 → NO_COVERAGE 2. jj_3R_253 : negated conditional → NO_COVERAGE 3. jj_3R_253 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_253 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_253 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(90)) { |
| 10125 |
1
1. jj_3R_253 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10126 |
5
1. jj_3R_253 : Substituted 89 with 90 → NO_COVERAGE 2. jj_3R_253 : negated conditional → NO_COVERAGE 3. jj_3R_253 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_253 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_253 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(89)) { |
| 10127 |
3
1. jj_3R_253 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_253 → NO_COVERAGE 2. jj_3R_253 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_253 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10128 | } | |
| 10129 | } | |
| 10130 |
4
1. jj_3R_253 : negated conditional → NO_COVERAGE 2. jj_3R_253 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_219 → NO_COVERAGE 3. jj_3R_253 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_253 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_219()) { |
| 10131 |
3
1. jj_3R_253 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_253 → NO_COVERAGE 2. jj_3R_253 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_253 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10132 | } | |
| 10133 |
3
1. jj_3R_253 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_253 → NO_COVERAGE 2. jj_3R_253 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_253 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10134 | } | |
| 10135 | ||
| 10136 | final private boolean jj_3R_198() { | |
| 10137 |
5
1. jj_3R_198 : Substituted 100 with 101 → NO_COVERAGE 2. jj_3R_198 : negated conditional → NO_COVERAGE 3. jj_3R_198 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_198 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_198 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(DECR)) { |
| 10138 |
3
1. jj_3R_198 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_198 → NO_COVERAGE 2. jj_3R_198 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_198 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10139 | } | |
| 10140 |
4
1. jj_3R_198 : negated conditional → NO_COVERAGE 2. jj_3R_198 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_65 → NO_COVERAGE 3. jj_3R_198 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_198 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_65()) { |
| 10141 |
3
1. jj_3R_198 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_198 → NO_COVERAGE 2. jj_3R_198 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_198 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10142 | } | |
| 10143 |
3
1. jj_3R_198 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_198 → NO_COVERAGE 2. jj_3R_198 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_198 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10144 | } | |
| 10145 | ||
| 10146 | final private boolean jj_3R_234() { | |
| 10147 | Token xsp; | |
| 10148 | xsp = jj_scanpos; | |
| 10149 |
5
1. jj_3R_234 : Substituted 101 with 102 → NO_COVERAGE 2. jj_3R_234 : negated conditional → NO_COVERAGE 3. jj_3R_234 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_234 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_234 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(101)) { |
| 10150 |
1
1. jj_3R_234 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10151 |
5
1. jj_3R_234 : Substituted 102 with 103 → NO_COVERAGE 2. jj_3R_234 : negated conditional → NO_COVERAGE 3. jj_3R_234 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_234 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_234 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(102)) { |
| 10152 |
3
1. jj_3R_234 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_234 → NO_COVERAGE 2. jj_3R_234 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_234 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10153 | } | |
| 10154 | } | |
| 10155 |
4
1. jj_3R_234 : negated conditional → NO_COVERAGE 2. jj_3R_234 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_216 → NO_COVERAGE 3. jj_3R_234 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_234 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_216()) { |
| 10156 |
3
1. jj_3R_234 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_234 → NO_COVERAGE 2. jj_3R_234 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_234 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10157 | } | |
| 10158 |
3
1. jj_3R_234 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_234 → NO_COVERAGE 2. jj_3R_234 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_234 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10159 | } | |
| 10160 | ||
| 10161 | final private boolean jj_3_18() { | |
| 10162 |
4
1. jj_3_18 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_18 : negated conditional → KILLED 3. jj_3_18 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_71 → KILLED 4. jj_3_18 : removed conditional - replaced equality check with false → KILLED |
if (jj_3R_71()) { |
| 10163 |
3
1. jj_3_18 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_18 → KILLED 2. jj_3_18 : Substituted 1 with 0 → KILLED 3. jj_3_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10164 | } | |
| 10165 |
3
1. jj_3_18 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_18 → NO_COVERAGE 2. jj_3_18 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10166 | } | |
| 10167 | ||
| 10168 | final private boolean jj_3R_252() { | |
| 10169 | Token xsp; | |
| 10170 | xsp = jj_scanpos; | |
| 10171 |
5
1. jj_3R_252 : Substituted 103 with 104 → NO_COVERAGE 2. jj_3R_252 : negated conditional → NO_COVERAGE 3. jj_3R_252 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_252 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_252 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(103)) { |
| 10172 |
1
1. jj_3R_252 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10173 |
5
1. jj_3R_252 : Substituted 104 with 105 → NO_COVERAGE 2. jj_3R_252 : negated conditional → NO_COVERAGE 3. jj_3R_252 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_252 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_252 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(104)) { |
| 10174 |
1
1. jj_3R_252 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10175 |
5
1. jj_3R_252 : Substituted 108 with 109 → NO_COVERAGE 2. jj_3R_252 : negated conditional → NO_COVERAGE 3. jj_3R_252 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_252 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_252 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(108)) { |
| 10176 |
3
1. jj_3R_252 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_252 → NO_COVERAGE 2. jj_3R_252 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_252 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10177 | } | |
| 10178 | } | |
| 10179 | } | |
| 10180 |
4
1. jj_3R_252 : negated conditional → NO_COVERAGE 2. jj_3R_252 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_219 → NO_COVERAGE 3. jj_3R_252 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_252 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_219()) { |
| 10181 |
3
1. jj_3R_252 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_252 → NO_COVERAGE 2. jj_3R_252 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_252 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10182 | } | |
| 10183 |
3
1. jj_3R_252 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_252 → NO_COVERAGE 2. jj_3R_252 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_252 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10184 | } | |
| 10185 | ||
| 10186 | final private boolean jj_3R_197() { | |
| 10187 |
5
1. jj_3R_197 : Substituted 99 with 100 → NO_COVERAGE 2. jj_3R_197 : negated conditional → NO_COVERAGE 3. jj_3R_197 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_197 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_197 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(INCR)) { |
| 10188 |
3
1. jj_3R_197 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_197 → NO_COVERAGE 2. jj_3R_197 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_197 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10189 | } | |
| 10190 |
4
1. jj_3R_197 : negated conditional → NO_COVERAGE 2. jj_3R_197 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_65 → NO_COVERAGE 3. jj_3R_197 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_197 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_65()) { |
| 10191 |
3
1. jj_3R_197 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_197 → NO_COVERAGE 2. jj_3R_197 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_197 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10192 | } | |
| 10193 |
3
1. jj_3R_197 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_197 → NO_COVERAGE 2. jj_3R_197 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_197 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10194 | } | |
| 10195 | ||
| 10196 | final private boolean jj_3R_229() { | |
| 10197 |
4
1. jj_3R_229 : negated conditional → NO_COVERAGE 2. jj_3R_229 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_235 → NO_COVERAGE 3. jj_3R_229 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_229 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_235()) { |
| 10198 |
3
1. jj_3R_229 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_229 → NO_COVERAGE 2. jj_3R_229 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_229 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10199 | } | |
| 10200 |
3
1. jj_3R_229 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_229 → NO_COVERAGE 2. jj_3R_229 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_229 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10201 | } | |
| 10202 | ||
| 10203 | final private boolean jj_3_17() { | |
| 10204 | Token xsp; | |
| 10205 | xsp = jj_scanpos; | |
| 10206 |
5
1. jj_3_17 : Substituted 109 with 110 → SURVIVED 2. jj_3_17 : removed conditional - replaced equality check with true → SURVIVED 3. jj_3_17 : negated conditional → KILLED 4. jj_3_17 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 5. jj_3_17 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(109)) { |
| 10207 |
1
1. jj_3_17 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10208 |
4
1. jj_3_17 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_17 : negated conditional → KILLED 3. jj_3_17 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_18 → KILLED 4. jj_3_17 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_18()) { |
| 10209 |
1
1. jj_3_17 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10210 |
4
1. jj_3_17 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3_17 : negated conditional → KILLED 3. jj_3_17 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_19 → KILLED 4. jj_3_17 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_19()) { |
| 10211 |
3
1. jj_3_17 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_17 → KILLED 2. jj_3_17 : Substituted 1 with 0 → KILLED 3. jj_3_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10212 | } | |
| 10213 | } | |
| 10214 | } | |
| 10215 |
4
1. jj_3_17 : negated conditional → NO_COVERAGE 2. jj_3_17 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_213 → NO_COVERAGE 3. jj_3_17 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_17 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_213()) { |
| 10216 |
3
1. jj_3_17 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_17 → NO_COVERAGE 2. jj_3_17 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10217 | } | |
| 10218 |
3
1. jj_3_17 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_17 → NO_COVERAGE 2. jj_3_17 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10219 | } | |
| 10220 | ||
| 10221 | final private boolean jj_3R_228() { | |
| 10222 |
4
1. jj_3R_228 : negated conditional → NO_COVERAGE 2. jj_3R_228 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_198 → NO_COVERAGE 3. jj_3R_228 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_228 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_198()) { |
| 10223 |
3
1. jj_3R_228 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_228 → NO_COVERAGE 2. jj_3R_228 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_228 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10224 | } | |
| 10225 |
3
1. jj_3R_228 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_228 → NO_COVERAGE 2. jj_3R_228 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_228 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10226 | } | |
| 10227 | ||
| 10228 | final private boolean jj_3R_227() { | |
| 10229 |
4
1. jj_3R_227 : negated conditional → NO_COVERAGE 2. jj_3R_227 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_197 → NO_COVERAGE 3. jj_3R_227 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_227 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_197()) { |
| 10230 |
3
1. jj_3R_227 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_227 → NO_COVERAGE 2. jj_3R_227 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_227 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10231 | } | |
| 10232 |
3
1. jj_3R_227 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_227 → NO_COVERAGE 2. jj_3R_227 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_227 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10233 | } | |
| 10234 | ||
| 10235 | final private boolean jj_3R_219() { | |
| 10236 | Token xsp; | |
| 10237 | xsp = jj_scanpos; | |
| 10238 |
4
1. jj_3R_219 : negated conditional → NO_COVERAGE 2. jj_3R_219 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_226 → NO_COVERAGE 3. jj_3R_219 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_219 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_226()) { |
| 10239 |
1
1. jj_3R_219 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10240 |
4
1. jj_3R_219 : negated conditional → NO_COVERAGE 2. jj_3R_219 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_227 → NO_COVERAGE 3. jj_3R_219 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_219 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_227()) { |
| 10241 |
1
1. jj_3R_219 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10242 |
4
1. jj_3R_219 : negated conditional → NO_COVERAGE 2. jj_3R_219 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_228 → NO_COVERAGE 3. jj_3R_219 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_219 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_228()) { |
| 10243 |
1
1. jj_3R_219 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10244 |
4
1. jj_3R_219 : negated conditional → NO_COVERAGE 2. jj_3R_219 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_229 → NO_COVERAGE 3. jj_3R_219 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_219 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_229()) { |
| 10245 |
3
1. jj_3R_219 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_219 → NO_COVERAGE 2. jj_3R_219 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_219 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10246 | } | |
| 10247 | } | |
| 10248 | } | |
| 10249 | } | |
| 10250 |
3
1. jj_3R_219 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_219 → NO_COVERAGE 2. jj_3R_219 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_219 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10251 | } | |
| 10252 | ||
| 10253 | final private boolean jj_3R_226() { | |
| 10254 | Token xsp; | |
| 10255 | xsp = jj_scanpos; | |
| 10256 |
5
1. jj_3R_226 : Substituted 101 with 102 → NO_COVERAGE 2. jj_3R_226 : negated conditional → NO_COVERAGE 3. jj_3R_226 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_226 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_226 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(101)) { |
| 10257 |
1
1. jj_3R_226 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10258 |
5
1. jj_3R_226 : Substituted 102 with 103 → NO_COVERAGE 2. jj_3R_226 : negated conditional → NO_COVERAGE 3. jj_3R_226 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_226 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_226 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(102)) { |
| 10259 |
3
1. jj_3R_226 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_226 → NO_COVERAGE 2. jj_3R_226 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_226 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10260 | } | |
| 10261 | } | |
| 10262 |
4
1. jj_3R_226 : negated conditional → NO_COVERAGE 2. jj_3R_226 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_219 → NO_COVERAGE 3. jj_3R_226 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_226 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_219()) { |
| 10263 |
3
1. jj_3R_226 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_226 → NO_COVERAGE 2. jj_3R_226 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_226 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10264 | } | |
| 10265 |
3
1. jj_3R_226 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_226 → NO_COVERAGE 2. jj_3R_226 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_226 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10266 | } | |
| 10267 | ||
| 10268 | final private boolean jj_3R_218() { | |
| 10269 | Token xsp; | |
| 10270 | xsp = jj_scanpos; | |
| 10271 |
5
1. jj_3R_218 : Substituted 88 with 89 → NO_COVERAGE 2. jj_3R_218 : negated conditional → NO_COVERAGE 3. jj_3R_218 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_218 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_218 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(88)) { |
| 10272 |
1
1. jj_3R_218 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10273 |
5
1. jj_3R_218 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_218 : negated conditional → NO_COVERAGE 3. jj_3R_218 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_218 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_218 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(124)) { |
| 10274 |
1
1. jj_3R_218 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10275 |
5
1. jj_3R_218 : Substituted 94 with 95 → NO_COVERAGE 2. jj_3R_218 : negated conditional → NO_COVERAGE 3. jj_3R_218 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_218 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_218 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(94)) { |
| 10276 |
1
1. jj_3R_218 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10277 |
5
1. jj_3R_218 : Substituted 95 with 96 → NO_COVERAGE 2. jj_3R_218 : negated conditional → NO_COVERAGE 3. jj_3R_218 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_218 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_218 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(95)) { |
| 10278 |
3
1. jj_3R_218 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_218 → NO_COVERAGE 2. jj_3R_218 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_218 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10279 | } | |
| 10280 | } | |
| 10281 | } | |
| 10282 | } | |
| 10283 |
4
1. jj_3R_218 : negated conditional → NO_COVERAGE 2. jj_3R_218 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_207 → NO_COVERAGE 3. jj_3R_218 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_218 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_207()) { |
| 10284 |
3
1. jj_3R_218 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_218 → NO_COVERAGE 2. jj_3R_218 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_218 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10285 | } | |
| 10286 |
3
1. jj_3R_218 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_218 → NO_COVERAGE 2. jj_3R_218 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_218 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10287 | } | |
| 10288 | ||
| 10289 | final private boolean jj_3R_215() { | |
| 10290 |
5
1. jj_3R_215 : Substituted 39 with 40 → NO_COVERAGE 2. jj_3R_215 : negated conditional → NO_COVERAGE 3. jj_3R_215 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_215 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_215 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(INSTANCEOF)) { |
| 10291 |
3
1. jj_3R_215 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_215 → NO_COVERAGE 2. jj_3R_215 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_215 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10292 | } | |
| 10293 |
4
1. jj_3R_215 : negated conditional → NO_COVERAGE 2. jj_3R_215 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → NO_COVERAGE 3. jj_3R_215 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_215 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_60()) { |
| 10294 |
3
1. jj_3R_215 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_215 → NO_COVERAGE 2. jj_3R_215 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_215 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10295 | } | |
| 10296 |
3
1. jj_3R_215 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_215 → NO_COVERAGE 2. jj_3R_215 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_215 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10297 | } | |
| 10298 | ||
| 10299 | final private boolean jj_3R_216() { | |
| 10300 |
4
1. jj_3R_216 : negated conditional → NO_COVERAGE 2. jj_3R_216 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_219 → NO_COVERAGE 3. jj_3R_216 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_216 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_219()) { |
| 10301 |
3
1. jj_3R_216 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_216 → NO_COVERAGE 2. jj_3R_216 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_216 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10302 | } | |
| 10303 | Token xsp; | |
| 10304 | while (true) { | |
| 10305 | xsp = jj_scanpos; | |
| 10306 |
4
1. jj_3R_216 : negated conditional → NO_COVERAGE 2. jj_3R_216 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_252 → NO_COVERAGE 3. jj_3R_216 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_216 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_252()) { |
| 10307 |
1
1. jj_3R_216 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10308 | break; | |
| 10309 | } | |
| 10310 | } | |
| 10311 |
3
1. jj_3R_216 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_216 → NO_COVERAGE 2. jj_3R_216 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_216 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10312 | } | |
| 10313 | ||
| 10314 | final private boolean jj_3R_212() { | |
| 10315 | Token xsp; | |
| 10316 | xsp = jj_scanpos; | |
| 10317 |
5
1. jj_3R_212 : Substituted 93 with 94 → NO_COVERAGE 2. jj_3R_212 : negated conditional → NO_COVERAGE 3. jj_3R_212 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_212 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_212 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(93)) { |
| 10318 |
1
1. jj_3R_212 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10319 |
5
1. jj_3R_212 : Substituted 96 with 97 → NO_COVERAGE 2. jj_3R_212 : negated conditional → NO_COVERAGE 3. jj_3R_212 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_212 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_212 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(96)) { |
| 10320 |
3
1. jj_3R_212 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_212 → NO_COVERAGE 2. jj_3R_212 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_212 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10321 | } | |
| 10322 | } | |
| 10323 |
4
1. jj_3R_212 : negated conditional → NO_COVERAGE 2. jj_3R_212 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_195 → NO_COVERAGE 3. jj_3R_212 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_212 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_195()) { |
| 10324 |
3
1. jj_3R_212 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_212 → NO_COVERAGE 2. jj_3R_212 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_212 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10325 | } | |
| 10326 |
3
1. jj_3R_212 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_212 → NO_COVERAGE 2. jj_3R_212 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_212 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10327 | } | |
| 10328 | ||
| 10329 | final private boolean jj_3R_213() { | |
| 10330 |
4
1. jj_3R_213 : negated conditional → NO_COVERAGE 2. jj_3R_213 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_216 → NO_COVERAGE 3. jj_3R_213 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_213 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_216()) { |
| 10331 |
3
1. jj_3R_213 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_213 → NO_COVERAGE 2. jj_3R_213 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_213 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10332 | } | |
| 10333 | Token xsp; | |
| 10334 | while (true) { | |
| 10335 | xsp = jj_scanpos; | |
| 10336 |
4
1. jj_3R_213 : negated conditional → NO_COVERAGE 2. jj_3R_213 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_234 → NO_COVERAGE 3. jj_3R_213 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_213 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_234()) { |
| 10337 |
1
1. jj_3R_213 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10338 | break; | |
| 10339 | } | |
| 10340 | } | |
| 10341 |
3
1. jj_3R_213 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_213 → NO_COVERAGE 2. jj_3R_213 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_213 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10342 | } | |
| 10343 | ||
| 10344 | final private boolean jj_3R_207() { | |
| 10345 |
4
1. jj_3R_207 : negated conditional → NO_COVERAGE 2. jj_3R_207 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_213 → NO_COVERAGE 3. jj_3R_207 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_207 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_213()) { |
| 10346 |
3
1. jj_3R_207 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_207 → NO_COVERAGE 2. jj_3R_207 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_207 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10347 | } | |
| 10348 | Token xsp; | |
| 10349 | while (true) { | |
| 10350 | xsp = jj_scanpos; | |
| 10351 |
4
1. jj_3R_207 : negated conditional → NO_COVERAGE 2. jj_3R_207 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_17 → NO_COVERAGE 3. jj_3R_207 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_207 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_17()) { |
| 10352 |
1
1. jj_3R_207 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10353 | break; | |
| 10354 | } | |
| 10355 | } | |
| 10356 |
3
1. jj_3R_207 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_207 → NO_COVERAGE 2. jj_3R_207 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_207 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10357 | } | |
| 10358 | ||
| 10359 | final private boolean jj_3R_206() { | |
| 10360 |
5
1. jj_3R_206 : Substituted 105 with 106 → NO_COVERAGE 2. jj_3R_206 : negated conditional → NO_COVERAGE 3. jj_3R_206 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_206 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_206 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(BIT_AND)) { |
| 10361 |
3
1. jj_3R_206 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_206 → NO_COVERAGE 2. jj_3R_206 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_206 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10362 | } | |
| 10363 |
4
1. jj_3R_206 : negated conditional → NO_COVERAGE 2. jj_3R_206 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_186 → NO_COVERAGE 3. jj_3R_206 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_206 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_186()) { |
| 10364 |
3
1. jj_3R_206 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_206 → NO_COVERAGE 2. jj_3R_206 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_206 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10365 | } | |
| 10366 |
3
1. jj_3R_206 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_206 → NO_COVERAGE 2. jj_3R_206 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_206 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10367 | } | |
| 10368 | ||
| 10369 | final private boolean jj_3R_202() { | |
| 10370 |
4
1. jj_3R_202 : negated conditional → NO_COVERAGE 2. jj_3R_202 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_207 → NO_COVERAGE 3. jj_3R_202 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_202 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_207()) { |
| 10371 |
3
1. jj_3R_202 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_202 → NO_COVERAGE 2. jj_3R_202 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_202 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10372 | } | |
| 10373 | Token xsp; | |
| 10374 | while (true) { | |
| 10375 | xsp = jj_scanpos; | |
| 10376 |
4
1. jj_3R_202 : negated conditional → NO_COVERAGE 2. jj_3R_202 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_218 → NO_COVERAGE 3. jj_3R_202 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_202 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_218()) { |
| 10377 |
1
1. jj_3R_202 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10378 | break; | |
| 10379 | } | |
| 10380 | } | |
| 10381 |
3
1. jj_3R_202 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_202 → NO_COVERAGE 2. jj_3R_202 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_202 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10382 | } | |
| 10383 | ||
| 10384 | final private boolean jj_3R_194() { | |
| 10385 |
5
1. jj_3R_194 : Substituted 106 with 107 → NO_COVERAGE 2. jj_3R_194 : negated conditional → NO_COVERAGE 3. jj_3R_194 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_194 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_194 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(BIT_OR)) { |
| 10386 |
3
1. jj_3R_194 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_194 → NO_COVERAGE 2. jj_3R_194 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_194 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10387 | } | |
| 10388 |
4
1. jj_3R_194 : negated conditional → NO_COVERAGE 2. jj_3R_194 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_151 → NO_COVERAGE 3. jj_3R_194 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_194 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_151()) { |
| 10389 |
3
1. jj_3R_194 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_194 → NO_COVERAGE 2. jj_3R_194 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_194 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10390 | } | |
| 10391 |
3
1. jj_3R_194 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_194 → NO_COVERAGE 2. jj_3R_194 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_194 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10392 | } | |
| 10393 | ||
| 10394 | final private boolean jj_3R_195() { | |
| 10395 |
4
1. jj_3R_195 : negated conditional → NO_COVERAGE 2. jj_3R_195 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_202 → NO_COVERAGE 3. jj_3R_195 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_195 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_202()) { |
| 10396 |
3
1. jj_3R_195 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_195 → NO_COVERAGE 2. jj_3R_195 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_195 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10397 | } | |
| 10398 | Token xsp; | |
| 10399 | xsp = jj_scanpos; | |
| 10400 |
4
1. jj_3R_195 : negated conditional → NO_COVERAGE 2. jj_3R_195 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_215 → NO_COVERAGE 3. jj_3R_195 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_195 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_215()) { |
| 10401 |
1
1. jj_3R_195 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10402 | } | |
| 10403 |
3
1. jj_3R_195 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_195 → NO_COVERAGE 2. jj_3R_195 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_195 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10404 | } | |
| 10405 | ||
| 10406 | final private boolean jj_3R_201() { | |
| 10407 |
5
1. jj_3R_201 : Substituted 107 with 108 → NO_COVERAGE 2. jj_3R_201 : negated conditional → NO_COVERAGE 3. jj_3R_201 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_201 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_201 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(XOR)) { |
| 10408 |
3
1. jj_3R_201 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_201 → NO_COVERAGE 2. jj_3R_201 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_201 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10409 | } | |
| 10410 |
4
1. jj_3R_201 : negated conditional → NO_COVERAGE 2. jj_3R_201 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_169 → NO_COVERAGE 3. jj_3R_201 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_201 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_169()) { |
| 10411 |
3
1. jj_3R_201 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_201 → NO_COVERAGE 2. jj_3R_201 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_201 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10412 | } | |
| 10413 |
3
1. jj_3R_201 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_201 → NO_COVERAGE 2. jj_3R_201 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_201 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10414 | } | |
| 10415 | ||
| 10416 | final private boolean jj_3R_185() { | |
| 10417 |
5
1. jj_3R_185 : Substituted 98 with 99 → NO_COVERAGE 2. jj_3R_185 : negated conditional → NO_COVERAGE 3. jj_3R_185 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_185 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_185 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SC_AND)) { |
| 10418 |
3
1. jj_3R_185 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_185 → NO_COVERAGE 2. jj_3R_185 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_185 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10419 | } | |
| 10420 |
4
1. jj_3R_185 : negated conditional → NO_COVERAGE 2. jj_3R_185 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_143 → NO_COVERAGE 3. jj_3R_185 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_185 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_143()) { |
| 10421 |
3
1. jj_3R_185 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_185 → NO_COVERAGE 2. jj_3R_185 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_185 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10422 | } | |
| 10423 |
3
1. jj_3R_185 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_185 → NO_COVERAGE 2. jj_3R_185 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_185 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10424 | } | |
| 10425 | ||
| 10426 | final private boolean jj_3R_186() { | |
| 10427 |
4
1. jj_3R_186 : negated conditional → NO_COVERAGE 2. jj_3R_186 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_195 → NO_COVERAGE 3. jj_3R_186 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_186 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_195()) { |
| 10428 |
3
1. jj_3R_186 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_186 → NO_COVERAGE 2. jj_3R_186 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_186 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10429 | } | |
| 10430 | Token xsp; | |
| 10431 | while (true) { | |
| 10432 | xsp = jj_scanpos; | |
| 10433 |
4
1. jj_3R_186 : negated conditional → NO_COVERAGE 2. jj_3R_186 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_212 → NO_COVERAGE 3. jj_3R_186 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_186 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_212()) { |
| 10434 |
1
1. jj_3R_186 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10435 | break; | |
| 10436 | } | |
| 10437 | } | |
| 10438 |
3
1. jj_3R_186 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_186 → NO_COVERAGE 2. jj_3R_186 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_186 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10439 | } | |
| 10440 | ||
| 10441 | final private boolean jj_3R_168() { | |
| 10442 |
5
1. jj_3R_168 : Substituted 97 with 98 → NO_COVERAGE 2. jj_3R_168 : negated conditional → NO_COVERAGE 3. jj_3R_168 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_168 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_168 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SC_OR)) { |
| 10443 |
3
1. jj_3R_168 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_168 → NO_COVERAGE 2. jj_3R_168 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_168 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10444 | } | |
| 10445 |
4
1. jj_3R_168 : negated conditional → NO_COVERAGE 2. jj_3R_168 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_136 → NO_COVERAGE 3. jj_3R_168 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_168 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_136()) { |
| 10446 |
3
1. jj_3R_168 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_168 → NO_COVERAGE 2. jj_3R_168 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_168 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10447 | } | |
| 10448 |
3
1. jj_3R_168 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_168 → NO_COVERAGE 2. jj_3R_168 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_168 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10449 | } | |
| 10450 | ||
| 10451 | final private boolean jj_3R_169() { | |
| 10452 |
4
1. jj_3R_169 : negated conditional → NO_COVERAGE 2. jj_3R_169 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_186 → NO_COVERAGE 3. jj_3R_169 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_169 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_186()) { |
| 10453 |
3
1. jj_3R_169 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_169 → NO_COVERAGE 2. jj_3R_169 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_169 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10454 | } | |
| 10455 | Token xsp; | |
| 10456 | while (true) { | |
| 10457 | xsp = jj_scanpos; | |
| 10458 |
4
1. jj_3R_169 : negated conditional → NO_COVERAGE 2. jj_3R_169 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_206 → NO_COVERAGE 3. jj_3R_169 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_169 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_206()) { |
| 10459 |
1
1. jj_3R_169 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10460 | break; | |
| 10461 | } | |
| 10462 | } | |
| 10463 |
3
1. jj_3R_169 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_169 → NO_COVERAGE 2. jj_3R_169 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_169 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10464 | } | |
| 10465 | ||
| 10466 | final private boolean jj_3R_150() { | |
| 10467 |
5
1. jj_3R_150 : Substituted 91 with 92 → NO_COVERAGE 2. jj_3R_150 : negated conditional → NO_COVERAGE 3. jj_3R_150 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_150 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_150 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(HOOK)) { |
| 10468 |
3
1. jj_3R_150 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_150 → NO_COVERAGE 2. jj_3R_150 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10469 | } | |
| 10470 |
4
1. jj_3R_150 : negated conditional → NO_COVERAGE 2. jj_3R_150 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_150 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_150 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 10471 |
3
1. jj_3R_150 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_150 → NO_COVERAGE 2. jj_3R_150 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10472 | } | |
| 10473 |
5
1. jj_3R_150 : Substituted 92 with 93 → NO_COVERAGE 2. jj_3R_150 : negated conditional → NO_COVERAGE 3. jj_3R_150 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_150 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_150 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COLON)) { |
| 10474 |
3
1. jj_3R_150 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_150 → NO_COVERAGE 2. jj_3R_150 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10475 | } | |
| 10476 |
4
1. jj_3R_150 : negated conditional → NO_COVERAGE 2. jj_3R_150 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3R_150 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_150 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 10477 |
3
1. jj_3R_150 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_150 → NO_COVERAGE 2. jj_3R_150 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10478 | } | |
| 10479 |
3
1. jj_3R_150 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_150 → NO_COVERAGE 2. jj_3R_150 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10480 | } | |
| 10481 | ||
| 10482 | final private boolean jj_3R_151() { | |
| 10483 |
4
1. jj_3R_151 : negated conditional → NO_COVERAGE 2. jj_3R_151 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_169 → NO_COVERAGE 3. jj_3R_151 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_151 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_169()) { |
| 10484 |
3
1. jj_3R_151 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_151 → NO_COVERAGE 2. jj_3R_151 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_151 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10485 | } | |
| 10486 | Token xsp; | |
| 10487 | while (true) { | |
| 10488 | xsp = jj_scanpos; | |
| 10489 |
4
1. jj_3R_151 : negated conditional → NO_COVERAGE 2. jj_3R_151 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_201 → NO_COVERAGE 3. jj_3R_151 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_151 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_201()) { |
| 10490 |
1
1. jj_3R_151 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10491 | break; | |
| 10492 | } | |
| 10493 | } | |
| 10494 |
3
1. jj_3R_151 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_151 → NO_COVERAGE 2. jj_3R_151 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_151 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10495 | } | |
| 10496 | ||
| 10497 | final private boolean jj_3R_143() { | |
| 10498 |
4
1. jj_3R_143 : negated conditional → NO_COVERAGE 2. jj_3R_143 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_151 → NO_COVERAGE 3. jj_3R_143 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_143 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_151()) { |
| 10499 |
3
1. jj_3R_143 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_143 → NO_COVERAGE 2. jj_3R_143 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_143 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10500 | } | |
| 10501 | Token xsp; | |
| 10502 | while (true) { | |
| 10503 | xsp = jj_scanpos; | |
| 10504 |
4
1. jj_3R_143 : negated conditional → NO_COVERAGE 2. jj_3R_143 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_194 → NO_COVERAGE 3. jj_3R_143 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_143 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_194()) { |
| 10505 |
1
1. jj_3R_143 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10506 | break; | |
| 10507 | } | |
| 10508 | } | |
| 10509 |
3
1. jj_3R_143 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_143 → NO_COVERAGE 2. jj_3R_143 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_143 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10510 | } | |
| 10511 | ||
| 10512 | final private boolean jj_3R_136() { | |
| 10513 |
4
1. jj_3R_136 : negated conditional → NO_COVERAGE 2. jj_3R_136 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_143 → NO_COVERAGE 3. jj_3R_136 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_136 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_143()) { |
| 10514 |
3
1. jj_3R_136 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_136 → NO_COVERAGE 2. jj_3R_136 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_136 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10515 | } | |
| 10516 | Token xsp; | |
| 10517 | while (true) { | |
| 10518 | xsp = jj_scanpos; | |
| 10519 |
4
1. jj_3R_136 : negated conditional → NO_COVERAGE 2. jj_3R_136 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_185 → NO_COVERAGE 3. jj_3R_136 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_136 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_185()) { |
| 10520 |
1
1. jj_3R_136 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10521 | break; | |
| 10522 | } | |
| 10523 | } | |
| 10524 |
3
1. jj_3R_136 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_136 → NO_COVERAGE 2. jj_3R_136 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_136 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10525 | } | |
| 10526 | ||
| 10527 | final private boolean jj_3R_126() { | |
| 10528 |
4
1. jj_3R_126 : negated conditional → NO_COVERAGE 2. jj_3R_126 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_136 → NO_COVERAGE 3. jj_3R_126 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_126 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_136()) { |
| 10529 |
3
1. jj_3R_126 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_126 → NO_COVERAGE 2. jj_3R_126 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_126 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10530 | } | |
| 10531 | Token xsp; | |
| 10532 | while (true) { | |
| 10533 | xsp = jj_scanpos; | |
| 10534 |
4
1. jj_3R_126 : negated conditional → NO_COVERAGE 2. jj_3R_126 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_168 → NO_COVERAGE 3. jj_3R_126 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_126 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_168()) { |
| 10535 |
1
1. jj_3R_126 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10536 | break; | |
| 10537 | } | |
| 10538 | } | |
| 10539 |
3
1. jj_3R_126 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_126 → NO_COVERAGE 2. jj_3R_126 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_126 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10540 | } | |
| 10541 | ||
| 10542 | final private boolean jj_3R_96() { | |
| 10543 |
4
1. jj_3R_96 : negated conditional → NO_COVERAGE 2. jj_3R_96 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_126 → NO_COVERAGE 3. jj_3R_96 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_96 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_126()) { |
| 10544 |
3
1. jj_3R_96 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_96 → NO_COVERAGE 2. jj_3R_96 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_96 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10545 | } | |
| 10546 | Token xsp; | |
| 10547 | xsp = jj_scanpos; | |
| 10548 |
4
1. jj_3R_96 : negated conditional → NO_COVERAGE 2. jj_3R_96 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_150 → NO_COVERAGE 3. jj_3R_96 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_96 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_150()) { |
| 10549 |
1
1. jj_3R_96 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10550 | } | |
| 10551 |
3
1. jj_3R_96 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_96 → NO_COVERAGE 2. jj_3R_96 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_96 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10552 | } | |
| 10553 | ||
| 10554 | final private boolean jj_3R_69() { | |
| 10555 | Token xsp; | |
| 10556 | xsp = jj_scanpos; | |
| 10557 |
5
1. jj_3R_69 : Substituted 87 with 88 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(87)) { |
| 10558 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10559 |
5
1. jj_3R_69 : Substituted 112 with 113 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(112)) { |
| 10560 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10561 |
5
1. jj_3R_69 : Substituted 113 with 114 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(113)) { |
| 10562 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10563 |
5
1. jj_3R_69 : Substituted 117 with 118 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(117)) { |
| 10564 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10565 |
5
1. jj_3R_69 : Substituted 110 with 111 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(110)) { |
| 10566 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10567 |
5
1. jj_3R_69 : Substituted 111 with 112 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(111)) { |
| 10568 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10569 |
5
1. jj_3R_69 : Substituted 118 with 119 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(118)) { |
| 10570 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10571 |
5
1. jj_3R_69 : Substituted 119 with 120 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(119)) { |
| 10572 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10573 |
5
1. jj_3R_69 : Substituted 120 with 121 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(120)) { |
| 10574 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10575 |
5
1. jj_3R_69 : Substituted 114 with 115 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(114)) { |
| 10576 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10577 |
5
1. jj_3R_69 : Substituted 116 with 117 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(116)) { |
| 10578 |
1
1. jj_3R_69 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10579 |
5
1. jj_3R_69 : Substituted 115 with 116 → SURVIVED 2. jj_3R_69 : negated conditional → SURVIVED 3. jj_3R_69 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_69 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_69 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(115)) { |
| 10580 |
3
1. jj_3R_69 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_69 → SURVIVED 2. jj_3R_69 : Substituted 1 with 0 → SURVIVED 3. jj_3R_69 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10581 | } | |
| 10582 | } | |
| 10583 | } | |
| 10584 | } | |
| 10585 | } | |
| 10586 | } | |
| 10587 | } | |
| 10588 | } | |
| 10589 | } | |
| 10590 | } | |
| 10591 | } | |
| 10592 | } | |
| 10593 |
3
1. jj_3R_69 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_69 → NO_COVERAGE 2. jj_3R_69 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_69 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10594 | } | |
| 10595 | ||
| 10596 | final private boolean jj_3_16() { | |
| 10597 |
4
1. jj_3_16 : negated conditional → SURVIVED 2. jj_3_16 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_69 → SURVIVED 3. jj_3_16 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_16 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_69()) { |
| 10598 |
3
1. jj_3_16 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_16 → KILLED 2. jj_3_16 : Substituted 1 with 0 → KILLED 3. jj_3_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10599 | } | |
| 10600 |
4
1. jj_3_16 : negated conditional → NO_COVERAGE 2. jj_3_16 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 3. jj_3_16 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3_16 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_70()) { |
| 10601 |
3
1. jj_3_16 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_16 → NO_COVERAGE 2. jj_3_16 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10602 | } | |
| 10603 |
3
1. jj_3_16 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_16 → NO_COVERAGE 2. jj_3_16 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10604 | } | |
| 10605 | ||
| 10606 | final private boolean jj_3R_70() { | |
| 10607 |
4
1. jj_3R_70 : negated conditional → NO_COVERAGE 2. jj_3R_70 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_96 → NO_COVERAGE 3. jj_3R_70 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_70 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_96()) { |
| 10608 |
3
1. jj_3R_70 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 2. jj_3R_70 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_70 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10609 | } | |
| 10610 | Token xsp; | |
| 10611 | xsp = jj_scanpos; | |
| 10612 |
4
1. jj_3R_70 : negated conditional → NO_COVERAGE 2. jj_3R_70 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_16 → NO_COVERAGE 3. jj_3R_70 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_70 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_16()) { |
| 10613 |
1
1. jj_3R_70 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10614 | } | |
| 10615 |
3
1. jj_3R_70 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_70 → NO_COVERAGE 2. jj_3R_70 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_70 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10616 | } | |
| 10617 | ||
| 10618 | final private boolean jj_3R_275() { | |
| 10619 |
5
1. jj_3R_275 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_275 : negated conditional → NO_COVERAGE 3. jj_3R_275 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_275 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_275 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 10620 |
3
1. jj_3R_275 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_275 → NO_COVERAGE 2. jj_3R_275 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_275 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10621 | } | |
| 10622 |
4
1. jj_3R_275 : negated conditional → NO_COVERAGE 2. jj_3R_275 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3R_275 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_275 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 10623 |
3
1. jj_3R_275 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_275 → NO_COVERAGE 2. jj_3R_275 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_275 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10624 | } | |
| 10625 |
3
1. jj_3R_275 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_275 → NO_COVERAGE 2. jj_3R_275 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_275 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10626 | } | |
| 10627 | ||
| 10628 | final private boolean jj_3R_262() { | |
| 10629 |
4
1. jj_3R_262 : negated conditional → NO_COVERAGE 2. jj_3R_262 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 3. jj_3R_262 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_262 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_80()) { |
| 10630 |
3
1. jj_3R_262 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_262 → NO_COVERAGE 2. jj_3R_262 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_262 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10631 | } | |
| 10632 | Token xsp; | |
| 10633 | while (true) { | |
| 10634 | xsp = jj_scanpos; | |
| 10635 |
4
1. jj_3R_262 : negated conditional → NO_COVERAGE 2. jj_3R_262 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_275 → NO_COVERAGE 3. jj_3R_262 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_262 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_275()) { |
| 10636 |
1
1. jj_3R_262 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10637 | break; | |
| 10638 | } | |
| 10639 | } | |
| 10640 |
3
1. jj_3R_262 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_262 → NO_COVERAGE 2. jj_3R_262 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_262 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10641 | } | |
| 10642 | ||
| 10643 | final private boolean jj_3_15() { | |
| 10644 |
5
1. jj_3_15 : Substituted 85 with 86 → SURVIVED 2. jj_3_15 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 3. jj_3_15 : removed conditional - replaced equality check with true → SURVIVED 4. jj_3_15 : negated conditional → KILLED 5. jj_3_15 : removed conditional - replaced equality check with false → KILLED |
if (jj_scan_token(DOT)) { |
| 10645 |
3
1. jj_3_15 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_15 → KILLED 2. jj_3_15 : Substituted 1 with 0 → KILLED 3. jj_3_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10646 | } | |
| 10647 |
5
1. jj_3_15 : Substituted 74 with 75 → SURVIVED 2. jj_3_15 : negated conditional → SURVIVED 3. jj_3_15 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_15 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_15 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(IDENTIFIER)) { |
| 10648 |
3
1. jj_3_15 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_15 → NO_COVERAGE 2. jj_3_15 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10649 | } | |
| 10650 |
3
1. jj_3_15 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_15 → NO_COVERAGE 2. jj_3_15 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10651 | } | |
| 10652 | ||
| 10653 | final private boolean jj_3R_80() { | |
| 10654 |
5
1. jj_3R_80 : Substituted 74 with 75 → NO_COVERAGE 2. jj_3R_80 : negated conditional → NO_COVERAGE 3. jj_3R_80 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_80 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_80 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(IDENTIFIER)) { |
| 10655 |
3
1. jj_3R_80 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 2. jj_3R_80 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_80 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10656 | } | |
| 10657 | Token xsp; | |
| 10658 | while (true) { | |
| 10659 | xsp = jj_scanpos; | |
| 10660 |
4
1. jj_3R_80 : negated conditional → NO_COVERAGE 2. jj_3R_80 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_15 → NO_COVERAGE 3. jj_3R_80 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_80 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3_15()) { |
| 10661 |
1
1. jj_3R_80 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10662 | break; | |
| 10663 | } | |
| 10664 | } | |
| 10665 |
3
1. jj_3R_80 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_80 → NO_COVERAGE 2. jj_3R_80 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_80 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10666 | } | |
| 10667 | ||
| 10668 | final private boolean jj_3R_104() { | |
| 10669 |
4
1. jj_3R_104 : negated conditional → SURVIVED 2. jj_3R_104 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_60 → SURVIVED 3. jj_3R_104 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_104 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_60()) { |
| 10670 |
3
1. jj_3R_104 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_104 → SURVIVED 2. jj_3R_104 : Substituted 1 with 0 → SURVIVED 3. jj_3R_104 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10671 | } | |
| 10672 |
3
1. jj_3R_104 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_104 → SURVIVED 2. jj_3R_104 : Substituted 0 with 1 → SURVIVED 3. jj_3R_104 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 10673 | } | |
| 10674 | ||
| 10675 | final private boolean jj_3R_76() { | |
| 10676 | Token xsp; | |
| 10677 | xsp = jj_scanpos; | |
| 10678 |
5
1. jj_3R_76 : Substituted 63 with 64 → SURVIVED 2. jj_3R_76 : negated conditional → SURVIVED 3. jj_3R_76 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_76 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_76 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(63)) { |
| 10679 |
1
1. jj_3R_76 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10680 |
4
1. jj_3R_76 : negated conditional → SURVIVED 2. jj_3R_76 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_104 → SURVIVED 3. jj_3R_76 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_76 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_104()) { |
| 10681 |
3
1. jj_3R_76 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_76 → SURVIVED 2. jj_3R_76 : Substituted 1 with 0 → SURVIVED 3. jj_3R_76 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10682 | } | |
| 10683 | } | |
| 10684 |
3
1. jj_3R_76 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_76 → SURVIVED 2. jj_3R_76 : Substituted 0 with 1 → SURVIVED 3. jj_3R_76 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 10685 | } | |
| 10686 | ||
| 10687 | final private boolean jj_3_14() { | |
| 10688 |
4
1. jj_3_14 : negated conditional → SURVIVED 2. jj_3_14 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → SURVIVED 3. jj_3_14 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_14 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_68()) { |
| 10689 |
3
1. jj_3_14 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_14 → SURVIVED 2. jj_3_14 : Substituted 1 with 0 → SURVIVED 3. jj_3_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10690 | } | |
| 10691 |
3
1. jj_3_14 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_14 → NO_COVERAGE 2. jj_3_14 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10692 | } | |
| 10693 | ||
| 10694 | final private boolean jj_3R_74() { | |
| 10695 | Token xsp; | |
| 10696 | xsp = jj_scanpos; | |
| 10697 |
5
1. jj_3R_74 : Substituted 15 with 16 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(15)) { |
| 10698 |
1
1. jj_3R_74 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10699 |
5
1. jj_3R_74 : Substituted 20 with 21 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(20)) { |
| 10700 |
1
1. jj_3R_74 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10701 |
5
1. jj_3R_74 : Substituted 17 with 18 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(17)) { |
| 10702 |
1
1. jj_3R_74 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10703 |
5
1. jj_3R_74 : Substituted 51 with 52 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(51)) { |
| 10704 |
1
1. jj_3R_74 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10705 |
5
1. jj_3R_74 : Substituted 40 with 41 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(40)) { |
| 10706 |
1
1. jj_3R_74 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10707 |
5
1. jj_3R_74 : Substituted 42 with 43 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(42)) { |
| 10708 |
1
1. jj_3R_74 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10709 |
5
1. jj_3R_74 : Substituted 33 with 34 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(33)) { |
| 10710 |
1
1. jj_3R_74 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10711 |
5
1. jj_3R_74 : Substituted 26 with 27 → SURVIVED 2. jj_3R_74 : negated conditional → SURVIVED 3. jj_3R_74 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_74 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_74 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(26)) { |
| 10712 |
3
1. jj_3R_74 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_74 → SURVIVED 2. jj_3R_74 : Substituted 1 with 0 → SURVIVED 3. jj_3R_74 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10713 | } | |
| 10714 | } | |
| 10715 | } | |
| 10716 | } | |
| 10717 | } | |
| 10718 | } | |
| 10719 | } | |
| 10720 | } | |
| 10721 |
3
1. jj_3R_74 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_74 → NO_COVERAGE 2. jj_3R_74 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_74 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10722 | } | |
| 10723 | ||
| 10724 | final private boolean jj_3R_170() { | |
| 10725 |
5
1. jj_3R_170 : Substituted 84 with 85 → NO_COVERAGE 2. jj_3R_170 : negated conditional → NO_COVERAGE 3. jj_3R_170 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_170 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_170 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(COMMA)) { |
| 10726 |
3
1. jj_3R_170 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_170 → NO_COVERAGE 2. jj_3R_170 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_170 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10727 | } | |
| 10728 |
4
1. jj_3R_170 : negated conditional → NO_COVERAGE 2. jj_3R_170 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_95 → NO_COVERAGE 3. jj_3R_170 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_170 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_95()) { |
| 10729 |
3
1. jj_3R_170 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_170 → NO_COVERAGE 2. jj_3R_170 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_170 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10730 | } | |
| 10731 |
3
1. jj_3R_170 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_170 → NO_COVERAGE 2. jj_3R_170 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_170 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10732 | } | |
| 10733 | ||
| 10734 | final private boolean jj_3_11() { | |
| 10735 |
5
1. jj_3_11 : Substituted 81 with 82 → SURVIVED 2. jj_3_11 : negated conditional → SURVIVED 3. jj_3_11 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_11 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_11 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LBRACKET)) { |
| 10736 |
3
1. jj_3_11 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_11 → KILLED 2. jj_3_11 : Substituted 1 with 0 → KILLED 3. jj_3_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10737 | } | |
| 10738 |
5
1. jj_3_11 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3_11 : negated conditional → NO_COVERAGE 3. jj_3_11 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_11 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_11 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 10739 |
3
1. jj_3_11 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_11 → NO_COVERAGE 2. jj_3_11 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10740 | } | |
| 10741 |
3
1. jj_3_11 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_11 → NO_COVERAGE 2. jj_3_11 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10742 | } | |
| 10743 | ||
| 10744 | final private boolean jj_3R_209() { | |
| 10745 |
5
1. jj_3R_209 : Substituted 54 with 55 → NO_COVERAGE 2. jj_3R_209 : negated conditional → NO_COVERAGE 3. jj_3R_209 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_209 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_209 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(SUPER)) { |
| 10746 |
3
1. jj_3R_209 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_209 → NO_COVERAGE 2. jj_3R_209 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_209 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10747 | } | |
| 10748 |
4
1. jj_3R_209 : negated conditional → NO_COVERAGE 2. jj_3R_209 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_67 → NO_COVERAGE 3. jj_3R_209 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_209 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_67()) { |
| 10749 |
3
1. jj_3R_209 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_209 → NO_COVERAGE 2. jj_3R_209 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_209 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10750 | } | |
| 10751 |
3
1. jj_3R_209 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_209 → NO_COVERAGE 2. jj_3R_209 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_209 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10752 | } | |
| 10753 | ||
| 10754 | final private boolean jj_3R_196() { | |
| 10755 |
4
1. jj_3R_196 : negated conditional → NO_COVERAGE 2. jj_3R_196 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_203 → NO_COVERAGE 3. jj_3R_196 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_196 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_203()) { |
| 10756 |
3
1. jj_3R_196 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_196 → NO_COVERAGE 2. jj_3R_196 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_196 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10757 | } | |
| 10758 |
3
1. jj_3R_196 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_196 → NO_COVERAGE 2. jj_3R_196 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_196 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10759 | } | |
| 10760 | ||
| 10761 | final private boolean jj_3R_203() { | |
| 10762 | Token xsp; | |
| 10763 | xsp = jj_scanpos; | |
| 10764 |
4
1. jj_3R_203 : negated conditional → NO_COVERAGE 2. jj_3R_203 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_208 → NO_COVERAGE 3. jj_3R_203 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_203 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_208()) { |
| 10765 |
1
1. jj_3R_203 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10766 |
4
1. jj_3R_203 : negated conditional → NO_COVERAGE 2. jj_3R_203 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_209 → NO_COVERAGE 3. jj_3R_203 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_203 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_209()) { |
| 10767 |
3
1. jj_3R_203 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_203 → NO_COVERAGE 2. jj_3R_203 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_203 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10768 | } | |
| 10769 | } | |
| 10770 |
3
1. jj_3R_203 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_203 → NO_COVERAGE 2. jj_3R_203 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_203 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10771 | } | |
| 10772 | ||
| 10773 | final private boolean jj_3R_208() { | |
| 10774 |
5
1. jj_3R_208 : Substituted 29 with 30 → NO_COVERAGE 2. jj_3R_208 : negated conditional → NO_COVERAGE 3. jj_3R_208 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_208 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_208 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(EXTENDS)) { |
| 10775 |
3
1. jj_3R_208 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_208 → NO_COVERAGE 2. jj_3R_208 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_208 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10776 | } | |
| 10777 |
4
1. jj_3R_208 : negated conditional → NO_COVERAGE 2. jj_3R_208 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_67 → NO_COVERAGE 3. jj_3R_208 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_208 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_67()) { |
| 10778 |
3
1. jj_3R_208 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_208 → NO_COVERAGE 2. jj_3R_208 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_208 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10779 | } | |
| 10780 |
3
1. jj_3R_208 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_208 → NO_COVERAGE 2. jj_3R_208 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_208 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10781 | } | |
| 10782 | ||
| 10783 | final private boolean jj_3R_125() { | |
| 10784 |
5
1. jj_3R_125 : Substituted 91 with 92 → NO_COVERAGE 2. jj_3R_125 : negated conditional → NO_COVERAGE 3. jj_3R_125 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_125 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_125 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(HOOK)) { |
| 10785 |
3
1. jj_3R_125 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_125 → NO_COVERAGE 2. jj_3R_125 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_125 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10786 | } | |
| 10787 | Token xsp; | |
| 10788 | xsp = jj_scanpos; | |
| 10789 |
4
1. jj_3R_125 : negated conditional → NO_COVERAGE 2. jj_3R_125 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_196 → NO_COVERAGE 3. jj_3R_125 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_125 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_196()) { |
| 10790 |
1
1. jj_3R_125 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10791 | } | |
| 10792 |
3
1. jj_3R_125 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_125 → NO_COVERAGE 2. jj_3R_125 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_125 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10793 | } | |
| 10794 | ||
| 10795 | final private boolean jj_3_12() { | |
| 10796 |
4
1. jj_3_12 : negated conditional → SURVIVED 2. jj_3_12 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → SURVIVED 3. jj_3_12 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_12 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3R_68()) { |
| 10797 |
3
1. jj_3_12 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_12 → SURVIVED 2. jj_3_12 : Substituted 1 with 0 → SURVIVED 3. jj_3_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10798 | } | |
| 10799 |
3
1. jj_3_12 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_12 → NO_COVERAGE 2. jj_3_12 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10800 | } | |
| 10801 | ||
| 10802 | final private boolean jj_3R_124() { | |
| 10803 |
4
1. jj_3R_124 : negated conditional → NO_COVERAGE 2. jj_3R_124 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_67 → NO_COVERAGE 3. jj_3R_124 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_124 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_67()) { |
| 10804 |
3
1. jj_3R_124 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_124 → NO_COVERAGE 2. jj_3R_124 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_124 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10805 | } | |
| 10806 |
3
1. jj_3R_124 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_124 → NO_COVERAGE 2. jj_3R_124 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_124 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10807 | } | |
| 10808 | ||
| 10809 | final private boolean jj_3R_95() { | |
| 10810 | Token xsp; | |
| 10811 | xsp = jj_scanpos; | |
| 10812 |
4
1. jj_3R_95 : negated conditional → NO_COVERAGE 2. jj_3R_95 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_124 → NO_COVERAGE 3. jj_3R_95 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_95 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_124()) { |
| 10813 |
1
1. jj_3R_95 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10814 |
4
1. jj_3R_95 : negated conditional → NO_COVERAGE 2. jj_3R_95 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_125 → NO_COVERAGE 3. jj_3R_95 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_95 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_125()) { |
| 10815 |
3
1. jj_3R_95 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_95 → NO_COVERAGE 2. jj_3R_95 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_95 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10816 | } | |
| 10817 | } | |
| 10818 |
3
1. jj_3R_95 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_95 → NO_COVERAGE 2. jj_3R_95 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_95 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10819 | } | |
| 10820 | ||
| 10821 | final private boolean jj_3_10() { | |
| 10822 |
5
1. jj_3_10 : Substituted 81 with 82 → NO_COVERAGE 2. jj_3_10 : negated conditional → NO_COVERAGE 3. jj_3_10 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_10 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_10 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(LBRACKET)) { |
| 10823 |
3
1. jj_3_10 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_10 → NO_COVERAGE 2. jj_3_10 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10824 | } | |
| 10825 |
5
1. jj_3_10 : Substituted 82 with 83 → NO_COVERAGE 2. jj_3_10 : negated conditional → NO_COVERAGE 3. jj_3_10 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3_10 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3_10 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(RBRACKET)) { |
| 10826 |
3
1. jj_3_10 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_10 → NO_COVERAGE 2. jj_3_10 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10827 | } | |
| 10828 |
3
1. jj_3_10 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_10 → NO_COVERAGE 2. jj_3_10 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10829 | } | |
| 10830 | ||
| 10831 | final private boolean jj_3R_68() { | |
| 10832 |
5
1. jj_3R_68 : Substituted 88 with 89 → SURVIVED 2. jj_3R_68 : negated conditional → SURVIVED 3. jj_3R_68 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_68 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_68 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(LT)) { |
| 10833 |
3
1. jj_3R_68 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → SURVIVED 2. jj_3R_68 : Substituted 1 with 0 → SURVIVED 3. jj_3R_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10834 | } | |
| 10835 |
4
1. jj_3R_68 : negated conditional → NO_COVERAGE 2. jj_3R_68 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_95 → NO_COVERAGE 3. jj_3R_68 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_68 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_95()) { |
| 10836 |
3
1. jj_3R_68 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → NO_COVERAGE 2. jj_3R_68 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10837 | } | |
| 10838 | Token xsp; | |
| 10839 | while (true) { | |
| 10840 | xsp = jj_scanpos; | |
| 10841 |
4
1. jj_3R_68 : negated conditional → NO_COVERAGE 2. jj_3R_68 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_170 → NO_COVERAGE 3. jj_3R_68 : removed conditional - replaced equality check with false → NO_COVERAGE 4. jj_3R_68 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_3R_170()) { |
| 10842 |
1
1. jj_3R_68 : Removed assignment to member variable jj_scanpos → NO_COVERAGE |
jj_scanpos = xsp; |
| 10843 | break; | |
| 10844 | } | |
| 10845 | } | |
| 10846 |
5
1. jj_3R_68 : Substituted 124 with 125 → NO_COVERAGE 2. jj_3R_68 : negated conditional → NO_COVERAGE 3. jj_3R_68 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → NO_COVERAGE 4. jj_3R_68 : removed conditional - replaced equality check with false → NO_COVERAGE 5. jj_3R_68 : removed conditional - replaced equality check with true → NO_COVERAGE |
if (jj_scan_token(GT)) { |
| 10847 |
3
1. jj_3R_68 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → NO_COVERAGE 2. jj_3R_68 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3R_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10848 | } | |
| 10849 |
3
1. jj_3R_68 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_68 → NO_COVERAGE 2. jj_3R_68 : Substituted 0 with 1 → NO_COVERAGE 3. jj_3R_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return false; |
| 10850 | } | |
| 10851 | ||
| 10852 | final private boolean jj_3_13() { | |
| 10853 |
5
1. jj_3_13 : Substituted 85 with 86 → SURVIVED 2. jj_3_13 : negated conditional → SURVIVED 3. jj_3_13 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_13 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_13 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(DOT)) { |
| 10854 |
3
1. jj_3_13 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_13 → KILLED 2. jj_3_13 : Substituted 1 with 0 → KILLED 3. jj_3_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10855 | } | |
| 10856 |
5
1. jj_3_13 : Substituted 74 with 75 → SURVIVED 2. jj_3_13 : negated conditional → SURVIVED 3. jj_3_13 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3_13 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3_13 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(IDENTIFIER)) { |
| 10857 |
3
1. jj_3_13 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_13 → NO_COVERAGE 2. jj_3_13 : Substituted 1 with 0 → NO_COVERAGE 3. jj_3_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE |
return true; |
| 10858 | } | |
| 10859 | Token xsp; | |
| 10860 | xsp = jj_scanpos; | |
| 10861 |
4
1. jj_3_13 : negated conditional → SURVIVED 2. jj_3_13 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_14 → SURVIVED 3. jj_3_13 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3_13 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3_14()) { |
| 10862 |
1
1. jj_3_13 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10863 | } | |
| 10864 |
3
1. jj_3_13 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_13 → SURVIVED 2. jj_3_13 : Substituted 0 with 1 → SURVIVED 3. jj_3_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 10865 | } | |
| 10866 | ||
| 10867 | final private boolean jj_3R_123() { | |
| 10868 |
5
1. jj_3R_123 : Substituted 74 with 75 → SURVIVED 2. jj_3R_123 : negated conditional → SURVIVED 3. jj_3R_123 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 4. jj_3R_123 : removed conditional - replaced equality check with false → SURVIVED 5. jj_3R_123 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_scan_token(IDENTIFIER)) { |
| 10869 |
3
1. jj_3R_123 : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → SURVIVED 2. jj_3R_123 : Substituted 1 with 0 → SURVIVED 3. jj_3R_123 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return true; |
| 10870 | } | |
| 10871 | Token xsp; | |
| 10872 | xsp = jj_scanpos; | |
| 10873 |
4
1. jj_3R_123 : negated conditional → SURVIVED 2. jj_3R_123 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_12 → SURVIVED 3. jj_3R_123 : removed conditional - replaced equality check with false → SURVIVED 4. jj_3R_123 : removed conditional - replaced equality check with true → SURVIVED |
if (jj_3_12()) { |
| 10874 |
1
1. jj_3R_123 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10875 | } while (true) { | |
| 10876 | xsp = jj_scanpos; | |
| 10877 |
4
1. jj_3R_123 : removed conditional - replaced equality check with true → SURVIVED 2. jj_3R_123 : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3_13 → TIMED_OUT 3. jj_3R_123 : negated conditional → KILLED 4. jj_3R_123 : removed conditional - replaced equality check with false → KILLED |
if (jj_3_13()) { |
| 10878 |
1
1. jj_3R_123 : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = xsp; |
| 10879 | break; | |
| 10880 | } | |
| 10881 | } | |
| 10882 |
3
1. jj_3R_123 : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_3R_123 → SURVIVED 2. jj_3R_123 : Substituted 0 with 1 → SURVIVED 3. jj_3R_123 : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 10883 | } | |
| 10884 | ||
| 10885 | public JavaParserTokenManager token_source; | |
| 10886 | JavaCharStream jj_input_stream; | |
| 10887 | public Token token, jj_nt; | |
| 10888 | private int jj_ntk; | |
| 10889 | private Token jj_scanpos, jj_lastpos; | |
| 10890 | private int jj_la; | |
| 10891 |
6
1. 2. 3. 4. 5. 6. |
public boolean lookingAhead = false; |
| 10892 | private boolean jj_semLA; | |
| 10893 | ||
| 10894 | public JavaParser(java.io.InputStream stream) { | |
| 10895 |
4
1. 2. 3. 4. |
jj_input_stream = new JavaCharStream(stream, 1, 1); |
| 10896 |
2
1. 2. |
token_source = new JavaParserTokenManager(jj_input_stream); |
| 10897 |
2
1. 2. |
token = new Token(); |
| 10898 |
2
1. 2. |
jj_ntk = -1; |
| 10899 | } | |
| 10900 | ||
| 10901 | public void ReInit(java.io.InputStream stream) { | |
| 10902 |
3
1. ReInit : Substituted 1 with 0 → SURVIVED 2. ReInit : Substituted 1 with 0 → SURVIVED 3. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaCharStream::ReInit → SURVIVED |
jj_input_stream.ReInit(stream, 1, 1); |
| 10903 |
1
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParserTokenManager::ReInit → SURVIVED |
token_source.ReInit(jj_input_stream); |
| 10904 |
2
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/Token::<init> → SURVIVED 2. ReInit : Removed assignment to member variable token → SURVIVED |
token = new Token(); |
| 10905 |
2
1. ReInit : Substituted -1 with 0 → SURVIVED 2. ReInit : Removed assignment to member variable jj_ntk → SURVIVED |
jj_ntk = -1; |
| 10906 |
1
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::reset → SURVIVED |
jjtree.reset(); |
| 10907 | } | |
| 10908 | ||
| 10909 | public JavaParser(java.io.Reader stream) { | |
| 10910 |
4
1. 2. 3. 4. |
jj_input_stream = new JavaCharStream(stream, 1, 1); |
| 10911 |
2
1. 2. |
token_source = new JavaParserTokenManager(jj_input_stream); |
| 10912 |
2
1. 2. |
token = new Token(); |
| 10913 |
2
1. 2. |
jj_ntk = -1; |
| 10914 | } | |
| 10915 | ||
| 10916 | public void ReInit(java.io.Reader stream) { | |
| 10917 |
3
1. ReInit : Substituted 1 with 0 → SURVIVED 2. ReInit : Substituted 1 with 0 → SURVIVED 3. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaCharStream::ReInit → SURVIVED |
jj_input_stream.ReInit(stream, 1, 1); |
| 10918 |
1
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/JavaParserTokenManager::ReInit → SURVIVED |
token_source.ReInit(jj_input_stream); |
| 10919 |
2
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/Token::<init> → SURVIVED 2. ReInit : Removed assignment to member variable token → SURVIVED |
token = new Token(); |
| 10920 |
2
1. ReInit : Substituted -1 with 0 → SURVIVED 2. ReInit : Removed assignment to member variable jj_ntk → SURVIVED |
jj_ntk = -1; |
| 10921 |
1
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::reset → SURVIVED |
jjtree.reset(); |
| 10922 | } | |
| 10923 | ||
| 10924 | public JavaParser(JavaParserTokenManager tm) { | |
| 10925 |
1
1. |
token_source = tm; |
| 10926 |
2
1. 2. |
token = new Token(); |
| 10927 |
2
1. 2. |
jj_ntk = -1; |
| 10928 | } | |
| 10929 | ||
| 10930 | public void ReInit(JavaParserTokenManager tm) { | |
| 10931 |
1
1. ReInit : Removed assignment to member variable token_source → SURVIVED |
token_source = tm; |
| 10932 |
2
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/Token::<init> → SURVIVED 2. ReInit : Removed assignment to member variable token → SURVIVED |
token = new Token(); |
| 10933 |
2
1. ReInit : Substituted -1 with 0 → SURVIVED 2. ReInit : Removed assignment to member variable jj_ntk → SURVIVED |
jj_ntk = -1; |
| 10934 |
1
1. ReInit : removed call to com/soops/CEN4010/JMCA/JParser/JJTJavaParserState::reset → SURVIVED |
jjtree.reset(); |
| 10935 | } | |
| 10936 | ||
| 10937 | final private Token jj_consume_token(int kind) throws ParseException { | |
| 10938 | Token oldToken; | |
| 10939 |
3
1. jj_consume_token : negated conditional → KILLED 2. jj_consume_token : removed conditional - replaced equality check with false → KILLED 3. jj_consume_token : removed conditional - replaced equality check with true → KILLED |
if ((oldToken = token).next != null) { |
| 10940 |
1
1. jj_consume_token : Removed assignment to member variable token → KILLED |
token = token.next; |
| 10941 | } else { | |
| 10942 |
3
1. jj_consume_token : Removed assignment to member variable next → SURVIVED 2. jj_consume_token : removed call to com/soops/CEN4010/JMCA/JParser/JavaParserTokenManager::getNextToken → KILLED 3. jj_consume_token : Removed assignment to member variable token → KILLED |
token = token.next = token_source.getNextToken(); |
| 10943 | } | |
| 10944 |
2
1. jj_consume_token : Substituted -1 with 0 → KILLED 2. jj_consume_token : Removed assignment to member variable jj_ntk → KILLED |
jj_ntk = -1; |
| 10945 | // << to do >> cleasn up the remarked out code | |
| 10946 | // these are the literals | |
| 10947 |
10
1. jj_consume_token : changed conditional boundary → SURVIVED 2. jj_consume_token : changed conditional boundary → SURVIVED 3. jj_consume_token : Substituted 66 with 67 → SURVIVED 4. jj_consume_token : Substituted 74 with 75 → SURVIVED 5. jj_consume_token : negated conditional → SURVIVED 6. jj_consume_token : negated conditional → SURVIVED 7. jj_consume_token : removed conditional - replaced comparison check with false → SURVIVED 8. jj_consume_token : removed conditional - replaced comparison check with false → SURVIVED 9. jj_consume_token : removed conditional - replaced comparison check with true → SURVIVED 10. jj_consume_token : removed conditional - replaced comparison check with true → SURVIVED |
if (token.kind >= 66 && token.kind <= 74) { |
| 10948 |
3
1. jj_consume_token : negated conditional → SURVIVED 2. jj_consume_token : removed conditional - replaced equality check with false → SURVIVED 3. jj_consume_token : removed conditional - replaced equality check with true → SURVIVED |
if (currNode != null) { |
| 10949 | // currNode.setIdentifier( token.toString()); | |
| 10950 | // setNode(true); | |
| 10951 | } | |
| 10952 | } | |
| 10953 | ||
| 10954 |
3
1. jj_consume_token : negated conditional → KILLED 2. jj_consume_token : removed conditional - replaced equality check with false → KILLED 3. jj_consume_token : removed conditional - replaced equality check with true → KILLED |
if (token.kind == kind) { |
| 10955 | // if (!nodeIsSet) { | |
| 10956 |
2
1. jj_consume_token : removed call to com/soops/CEN4010/JMCA/JParser/Node::setIdentifier → SURVIVED 2. jj_consume_token : removed call to com/soops/CEN4010/JMCA/JParser/Token::toString → KILLED |
currNode.setIdentifier( token.toString()); |
| 10957 | // setNode(true); | |
| 10958 | // } | |
| 10959 |
2
1. jj_consume_token : replaced return value with null for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token → SURVIVED 2. jj_consume_token : mutated return of Object value for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_consume_token to ( if (x != null) null else throw new RuntimeException ) → SURVIVED |
return token; |
| 10960 | } | |
| 10961 |
1
1. jj_consume_token : Removed assignment to member variable token → SURVIVED |
token = oldToken; |
| 10962 |
1
1. jj_consume_token : removed call to com/soops/CEN4010/JMCA/JParser/JavaParser::generateParseException → SURVIVED |
throw generateParseException(); |
| 10963 | } | |
| 10964 | ||
| 10965 | static private final class LookaheadSuccess extends java.lang.Error {} | |
| 10966 | ||
| 10967 | ||
| 10968 |
6
1. 2. 3. 4. 5. 6. |
final private LookaheadSuccess jj_ls = new LookaheadSuccess(); |
| 10969 | final private boolean jj_scan_token(int kind) { | |
| 10970 |
3
1. jj_scan_token : removed conditional - replaced equality check with true → SURVIVED 2. jj_scan_token : negated conditional → KILLED 3. jj_scan_token : removed conditional - replaced equality check with false → KILLED |
if (jj_scanpos == jj_lastpos) { |
| 10971 |
3
1. jj_scan_token : Substituted 1 with 0 → SURVIVED 2. jj_scan_token : Replaced integer subtraction with addition → SURVIVED 3. jj_scan_token : Removed assignment to member variable jj_la → SURVIVED |
jj_la--; |
| 10972 |
3
1. jj_scan_token : negated conditional → KILLED 2. jj_scan_token : removed conditional - replaced equality check with false → KILLED 3. jj_scan_token : removed conditional - replaced equality check with true → KILLED |
if (jj_scanpos.next == null) { |
| 10973 |
4
1. jj_scan_token : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_scan_token : removed call to com/soops/CEN4010/JMCA/JParser/JavaParserTokenManager::getNextToken → KILLED 3. jj_scan_token : Removed assignment to member variable next → KILLED 4. jj_scan_token : Removed assignment to member variable jj_lastpos → KILLED |
jj_lastpos = jj_scanpos = jj_scanpos.next = |
| 10974 | token_source.getNextToken(); | |
| 10975 | } else { | |
| 10976 |
2
1. jj_scan_token : Removed assignment to member variable jj_scanpos → SURVIVED 2. jj_scan_token : Removed assignment to member variable jj_lastpos → KILLED |
jj_lastpos = jj_scanpos = jj_scanpos.next; |
| 10977 | } | |
| 10978 | } else { | |
| 10979 |
1
1. jj_scan_token : Removed assignment to member variable jj_scanpos → SURVIVED |
jj_scanpos = jj_scanpos.next; |
| 10980 | } | |
| 10981 |
3
1. jj_scan_token : removed conditional - replaced equality check with true → SURVIVED 2. jj_scan_token : negated conditional → KILLED 3. jj_scan_token : removed conditional - replaced equality check with false → KILLED |
if (jj_scanpos.kind != kind) { |
| 10982 |
3
1. jj_scan_token : replaced boolean return with false for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → KILLED 2. jj_scan_token : Substituted 1 with 0 → KILLED 3. jj_scan_token : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED |
return true; |
| 10983 | } | |
| 10984 |
6
1. jj_scan_token : negated conditional → SURVIVED 2. jj_scan_token : removed conditional - replaced equality check with false → SURVIVED 3. jj_scan_token : removed conditional - replaced equality check with false → SURVIVED 4. jj_scan_token : removed conditional - replaced equality check with true → SURVIVED 5. jj_scan_token : negated conditional → KILLED 6. jj_scan_token : removed conditional - replaced equality check with true → KILLED |
if (jj_la == 0 && jj_scanpos == jj_lastpos) { |
| 10985 | throw jj_ls; | |
| 10986 | } | |
| 10987 |
3
1. jj_scan_token : replaced boolean return with true for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_scan_token → SURVIVED 2. jj_scan_token : Substituted 0 with 1 → SURVIVED 3. jj_scan_token : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED |
return false; |
| 10988 | } | |
| 10989 | ||
| 10990 | final public Token getNextToken() { | |
| 10991 |
3
1. getNextToken : negated conditional → NO_COVERAGE 2. getNextToken : removed conditional - replaced equality check with false → NO_COVERAGE 3. getNextToken : removed conditional - replaced equality check with true → NO_COVERAGE |
if (token.next != null) { |
| 10992 |
1
1. getNextToken : Removed assignment to member variable token → NO_COVERAGE |
token = token.next; |
| 10993 | } else { | |
| 10994 |
3
1. getNextToken : removed call to com/soops/CEN4010/JMCA/JParser/JavaParserTokenManager::getNextToken → NO_COVERAGE 2. getNextToken : Removed assignment to member variable next → NO_COVERAGE 3. getNextToken : Removed assignment to member variable token → NO_COVERAGE |
token = token.next = token_source.getNextToken(); |
| 10995 | } | |
| 10996 |
2
1. getNextToken : Substituted -1 with 0 → NO_COVERAGE 2. getNextToken : Removed assignment to member variable jj_ntk → NO_COVERAGE |
jj_ntk = -1; |
| 10997 |
2
1. getNextToken : replaced return value with null for com/soops/CEN4010/JMCA/JParser/JavaParser::getNextToken → NO_COVERAGE 2. getNextToken : mutated return of Object value for com/soops/CEN4010/JMCA/JParser/JavaParser::getNextToken to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE |
return token; |
| 10998 | } | |
| 10999 | ||
| 11000 | final public Token getToken(int index) { | |
| 11001 |
3
1. getToken : removed conditional - replaced equality check with false → SURVIVED 2. getToken : negated conditional → KILLED 3. getToken : removed conditional - replaced equality check with true → KILLED |
Token t = lookingAhead ? jj_scanpos : token; |
| 11002 |
6
1. getToken : changed conditional boundary → SURVIVED 2. getToken : Substituted 0 with 1 → SURVIVED 3. getToken : negated conditional → SURVIVED 4. getToken : removed conditional - replaced comparison check with false → SURVIVED 5. getToken : Changed increment from 1 to -1 → KILLED 6. getToken : removed conditional - replaced comparison check with true → KILLED |
for (int i = 0; i < index; i++) { |
| 11003 |
3
1. getToken : negated conditional → KILLED 2. getToken : removed conditional - replaced equality check with false → KILLED 3. getToken : removed conditional - replaced equality check with true → KILLED |
if (t.next != null) { |
| 11004 | t = t.next; | |
| 11005 | } else { | |
| 11006 |
2
1. getToken : Removed assignment to member variable next → SURVIVED 2. getToken : removed call to com/soops/CEN4010/JMCA/JParser/JavaParserTokenManager::getNextToken → KILLED |
t = t.next = token_source.getNextToken(); |
| 11007 | } | |
| 11008 | } | |
| 11009 |
2
1. getToken : replaced return value with null for com/soops/CEN4010/JMCA/JParser/JavaParser::getToken → KILLED 2. getToken : mutated return of Object value for com/soops/CEN4010/JMCA/JParser/JavaParser::getToken to ( if (x != null) null else throw new RuntimeException ) → KILLED |
return t; |
| 11010 | } | |
| 11011 | ||
| 11012 | final private int jj_ntk() { | |
| 11013 |
4
1. jj_ntk : negated conditional → KILLED 2. jj_ntk : removed conditional - replaced equality check with false → KILLED 3. jj_ntk : removed conditional - replaced equality check with true → KILLED 4. jj_ntk : Removed assignment to member variable jj_nt → KILLED |
if ((jj_nt = token.next) == null) { |
| 11014 |
5
1. jj_ntk : Removed assignment to member variable jj_ntk → SURVIVED 2. jj_ntk : removed call to com/soops/CEN4010/JMCA/JParser/JavaParserTokenManager::getNextToken → KILLED 3. jj_ntk : replaced int return with 0 for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → KILLED 4. jj_ntk : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED 5. jj_ntk : Removed assignment to member variable next → KILLED |
return (jj_ntk = (token.next = token_source.getNextToken()).kind); |
| 11015 | } else { | |
| 11016 |
3
1. jj_ntk : replaced int return with 0 for com/soops/CEN4010/JMCA/JParser/JavaParser::jj_ntk → SURVIVED 2. jj_ntk : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED 3. jj_ntk : Removed assignment to member variable jj_ntk → SURVIVED |
return (jj_ntk = jj_nt.kind); |
| 11017 | } | |
| 11018 | } | |
| 11019 | ||
| 11020 | public ParseException generateParseException() { | |
| 11021 | Token errortok = token.next; | |
| 11022 | int line = errortok.beginLine, column = errortok.beginColumn; | |
| 11023 |
4
1. generateParseException : Substituted 0 with 1 → SURVIVED 2. generateParseException : negated conditional → SURVIVED 3. generateParseException : removed conditional - replaced equality check with false → SURVIVED 4. generateParseException : removed conditional - replaced equality check with true → SURVIVED |
String mess = (errortok.kind == 0) ? tokenImage[0] : errortok.image; |
| 11024 |
17
1. generateParseException : removed call to java/lang/StringBuilder::<init> → SURVIVED 2. generateParseException : removed call to com/soops/CEN4010/JMCA/JParser/ParseException::<init> → SURVIVED 3. generateParseException : removed call to java/lang/StringBuilder::append → SURVIVED 4. generateParseException : removed call to java/lang/StringBuilder::append → SURVIVED 5. generateParseException : removed call to java/lang/StringBuilder::append → SURVIVED 6. generateParseException : removed call to java/lang/StringBuilder::append → SURVIVED 7. generateParseException : removed call to java/lang/StringBuilder::append → SURVIVED 8. generateParseException : removed call to java/lang/StringBuilder::append → SURVIVED 9. generateParseException : removed call to java/lang/StringBuilder::toString → SURVIVED 10. generateParseException : replaced return value with null for com/soops/CEN4010/JMCA/JParser/JavaParser::generateParseException → SURVIVED 11. generateParseException : mutated return of Object value for com/soops/CEN4010/JMCA/JParser/JavaParser::generateParseException to ( if (x != null) null else throw new RuntimeException ) → SURVIVED 12. generateParseException : replaced call to java/lang/StringBuilder::append with receiver → SURVIVED 13. generateParseException : replaced call to java/lang/StringBuilder::append with receiver → SURVIVED 14. generateParseException : replaced call to java/lang/StringBuilder::append with receiver → SURVIVED 15. generateParseException : replaced call to java/lang/StringBuilder::append with receiver → SURVIVED 16. generateParseException : replaced call to java/lang/StringBuilder::append with receiver → SURVIVED 17. generateParseException : replaced call to java/lang/StringBuilder::append with receiver → SURVIVED |
return new ParseException("Parse error at line " + line + ", column " + |
| 11025 | column + ". Encountered: " + mess); | |
| 11026 | } | |
| 11027 | ||
| 11028 | final public void enable_tracing() { | |
| 11029 | } | |
| 11030 | ||
| 11031 | final public void disable_tracing() { | |
| 11032 | } | |
| 11033 | ||
| 11034 | } | |
Mutations | ||
| 16 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 24 |
1.1 2.2 3.3 |
|
| 108 |
1.1 2.2 3.3 |
|
| 110 |
1.1 |
|
| 115 |
1.1 2.2 |
|
| 116 |
1.1 2.2 |
|
| 121 |
1.1 2.2 3.3 |
|
| 122 |
1.1 |
|
| 124 |
1.1 |
|
| 125 |
1.1 2.2 3.3 4.4 |
|
| 129 |
1.1 2.2 3.3 |
|
| 131 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 |
|
| 137 |
1.1 |
|
| 138 |
1.1 |
|
| 139 |
1.1 |
|
| 140 |
1.1 |
|
| 144 |
1.1 |
|
| 145 |
1.1 |
|
| 146 |
1.1 |
|
| 147 |
1.1 2.2 |
|
| 151 |
1.1 2.2 |
|
| 152 |
1.1 |
|
| 166 |
1.1 2.2 |
|
| 167 |
1.1 |
|
| 168 |
1.1 |
|
| 170 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 172 |
1.1 |
|
| 178 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 185 |
1.1 |
|
| 188 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 |
|
| 210 |
1.1 |
|
| 212 |
1.1 2.2 |
|
| 214 |
1.1 2.2 3.3 |
|
| 215 |
1.1 |
|
| 216 |
1.1 |
|
| 218 |
1.1 |
|
| 220 |
1.1 2.2 3.3 |
|
| 227 |
1.1 2.2 3.3 |
|
| 240 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 241 |
1.1 2.2 3.3 4.4 |
|
| 248 |
1.1 2.2 |
|
| 249 |
1.1 |
|
| 250 |
1.1 |
|
| 252 |
1.1 2.2 |
|
| 253 |
1.1 |
|
| 254 |
1.1 2.2 |
|
| 256 |
1.1 2.2 3.3 |
|
| 257 |
1.1 |
|
| 258 |
1.1 |
|
| 260 |
1.1 |
|
| 262 |
1.1 2.2 3.3 |
|
| 269 |
1.1 2.2 3.3 |
|
| 282 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 283 |
1.1 2.2 3.3 4.4 |
|
| 290 |
1.1 2.2 |
|
| 291 |
1.1 |
|
| 292 |
1.1 |
|
| 294 |
1.1 2.2 |
|
| 295 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 297 |
1.1 2.2 |
|
| 302 |
1.1 |
|
| 303 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 305 |
1.1 2.2 |
|
| 306 |
1.1 2.2 |
|
| 311 |
1.1 2.2 |
|
| 313 |
1.1 2.2 3.3 |
|
| 314 |
1.1 |
|
| 315 |
1.1 |
|
| 317 |
1.1 |
|
| 319 |
1.1 2.2 3.3 |
|
| 326 |
1.1 2.2 3.3 |
|
| 339 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 340 |
1.1 2.2 3.3 4.4 |
|
| 352 |
1.1 2.2 |
|
| 353 |
1.1 |
|
| 354 |
1.1 |
|
| 355 |
1.1 |
|
| 358 |
1.1 2.2 3.3 4.4 5.5 |
|
| 363 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 |
|
| 365 |
1.1 2.2 |
|
| 366 |
1.1 2.2 |
|
| 369 |
1.1 2.2 |
|
| 370 |
1.1 2.2 |
|
| 373 |
1.1 2.2 |
|
| 374 |
1.1 2.2 |
|
| 377 |
1.1 2.2 |
|
| 378 |
1.1 2.2 |
|
| 381 |
1.1 2.2 |
|
| 382 |
1.1 2.2 |
|
| 385 |
1.1 2.2 |
|
| 386 |
1.1 2.2 |
|
| 389 |
1.1 2.2 |
|
| 390 |
1.1 2.2 |
|
| 393 |
1.1 2.2 |
|
| 394 |
1.1 2.2 |
|
| 397 |
1.1 2.2 |
|
| 398 |
1.1 2.2 |
|
| 401 |
1.1 2.2 |
|
| 402 |
1.1 2.2 |
|
| 405 |
1.1 2.2 |
|
| 406 |
1.1 2.2 |
|
| 409 |
1.1 |
|
| 412 |
1.1 2.2 |
|
| 413 |
1.1 |
|
| 416 |
1.1 2.2 |
|
| 417 |
1.1 |
|
| 424 |
1.1 2.2 3.3 |
|
| 425 |
1.1 |
|
| 426 |
1.1 |
|
| 428 |
1.1 |
|
| 430 |
1.1 2.2 3.3 |
|
| 437 |
1.1 2.2 3.3 |
|
| 450 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 451 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 462 |
1.1 2.2 |
|
| 463 |
1.1 |
|
| 464 |
1.1 |
|
| 467 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 |
|
| 469 |
1.1 2.2 |
|
| 486 |
1.1 |
|
| 487 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 |
|
| 490 |
1.1 |
|
| 493 |
1.1 |
|
| 496 |
1.1 |
|
| 499 |
1.1 2.2 |
|
| 500 |
1.1 |
|
| 504 |
1.1 2.2 |
|
| 505 |
1.1 |
|
| 508 |
1.1 2.2 3.3 |
|
| 509 |
1.1 |
|
| 510 |
1.1 |
|
| 512 |
1.1 |
|
| 514 |
1.1 2.2 3.3 |
|
| 521 |
1.1 2.2 3.3 |
|
| 534 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 535 |
1.1 2.2 3.3 4.4 |
|
| 543 |
1.1 2.2 |
|
| 545 |
1.1 |
|
| 546 |
1.1 |
|
| 547 |
1.1 |
|
| 549 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 551 |
1.1 2.2 |
|
| 554 |
1.1 2.2 |
|
| 555 |
1.1 |
|
| 558 |
1.1 2.2 |
|
| 559 |
1.1 |
|
| 561 |
1.1 2.2 |
|
| 562 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 564 |
1.1 |
|
| 569 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 571 |
1.1 |
|
| 576 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 578 |
1.1 |
|
| 583 |
1.1 |
|
| 585 |
1.1 2.2 3.3 |
|
| 586 |
1.1 |
|
| 587 |
1.1 |
|
| 589 |
1.1 |
|
| 591 |
1.1 2.2 3.3 |
|
| 598 |
1.1 2.2 3.3 |
|
| 611 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 612 |
1.1 2.2 3.3 4.4 |
|
| 619 |
1.1 2.2 |
|
| 620 |
1.1 |
|
| 621 |
1.1 |
|
| 622 |
1.1 |
|
| 624 |
1.1 2.2 |
|
| 625 |
1.1 |
|
| 627 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 634 |
1.1 2.2 |
|
| 635 |
1.1 |
|
| 636 |
1.1 |
|
| 638 |
1.1 2.2 |
|
| 639 |
1.1 |
|
| 640 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 642 |
1.1 |
|
| 647 |
1.1 2.2 3.3 |
|
| 648 |
1.1 |
|
| 649 |
1.1 |
|
| 651 |
1.1 |
|
| 653 |
1.1 2.2 3.3 |
|
| 660 |
1.1 2.2 3.3 |
|
| 673 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 674 |
1.1 2.2 3.3 4.4 |
|
| 681 |
1.1 2.2 |
|
| 682 |
1.1 |
|
| 683 |
1.1 |
|
| 685 |
1.1 2.2 |
|
| 686 |
1.1 |
|
| 688 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 695 |
1.1 2.2 |
|
| 696 |
1.1 |
|
| 698 |
1.1 2.2 |
|
| 699 |
1.1 |
|
| 700 |
1.1 2.2 3.3 |
|
| 702 |
1.1 |
|
| 707 |
1.1 2.2 3.3 |
|
| 708 |
1.1 |
|
| 709 |
1.1 |
|
| 711 |
1.1 |
|
| 713 |
1.1 2.2 3.3 |
|
| 720 |
1.1 2.2 3.3 |
|
| 733 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 734 |
1.1 2.2 3.3 4.4 |
|
| 741 |
1.1 2.2 |
|
| 742 |
1.1 |
|
| 743 |
1.1 |
|
| 745 |
1.1 2.2 |
|
| 746 |
1.1 2.2 |
|
| 747 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 749 |
1.1 2.2 |
|
| 754 |
1.1 |
|
| 756 |
1.1 2.2 3.3 |
|
| 757 |
1.1 |
|
| 758 |
1.1 |
|
| 760 |
1.1 |
|
| 762 |
1.1 2.2 3.3 |
|
| 769 |
1.1 2.2 3.3 |
|
| 782 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 783 |
1.1 2.2 3.3 4.4 |
|
| 790 |
1.1 2.2 |
|
| 791 |
1.1 |
|
| 792 |
1.1 |
|
| 794 |
1.1 2.2 |
|
| 795 |
1.1 |
|
| 797 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 804 |
1.1 2.2 |
|
| 805 |
1.1 |
|
| 807 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 809 |
1.1 2.2 |
|
| 812 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 |
|
| 846 |
1.1 2.2 |
|
| 852 |
1.1 2.2 |
|
| 854 |
1.1 2.2 3.3 |
|
| 855 |
1.1 |
|
| 856 |
1.1 |
|
| 858 |
1.1 |
|
| 860 |
1.1 2.2 3.3 |
|
| 867 |
1.1 2.2 3.3 |
|
| 880 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 881 |
1.1 2.2 3.3 4.4 |
|
| 888 |
1.1 2.2 |
|
| 889 |
1.1 |
|
| 890 |
1.1 |
|
| 892 |
1.1 2.2 |
|
| 893 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 895 |
1.1 |
|
| 900 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 902 |
1.1 2.2 |
|
| 908 |
1.1 2.2 3.3 |
|
| 909 |
1.1 |
|
| 910 |
1.1 |
|
| 912 |
1.1 |
|
| 914 |
1.1 2.2 3.3 |
|
| 921 |
1.1 2.2 3.3 |
|
| 934 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 935 |
1.1 2.2 3.3 4.4 |
|
| 942 |
1.1 2.2 |
|
| 943 |
1.1 |
|
| 944 |
1.1 |
|
| 946 |
1.1 2.2 |
|
| 947 |
1.1 |
|
| 949 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 956 |
1.1 2.2 |
|
| 957 |
1.1 |
|
| 959 |
1.1 2.2 |
|
| 961 |
1.1 2.2 3.3 |
|
| 962 |
1.1 |
|
| 963 |
1.1 |
|
| 965 |
1.1 |
|
| 967 |
1.1 2.2 3.3 |
|
| 974 |
1.1 2.2 3.3 |
|
| 987 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 988 |
1.1 2.2 3.3 4.4 |
|
| 995 |
1.1 2.2 |
|
| 996 |
1.1 |
|
| 997 |
1.1 |
|
| 999 |
1.1 2.2 |
|
| 1000 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1002 |
1.1 |
|
| 1008 |
1.1 2.2 3.3 |
|
| 1009 |
1.1 |
|
| 1010 |
1.1 |
|
| 1012 |
1.1 |
|
| 1014 |
1.1 2.2 3.3 |
|
| 1021 |
1.1 2.2 3.3 |
|
| 1034 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1035 |
1.1 2.2 3.3 4.4 |
|
| 1042 |
1.1 2.2 |
|
| 1043 |
1.1 |
|
| 1044 |
1.1 |
|
| 1046 |
1.1 2.2 |
|
| 1047 |
1.1 |
|
| 1049 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1056 |
1.1 2.2 |
|
| 1057 |
1.1 |
|
| 1060 |
1.1 2.2 3.3 |
|
| 1061 |
1.1 |
|
| 1062 |
1.1 |
|
| 1064 |
1.1 |
|
| 1066 |
1.1 2.2 3.3 |
|
| 1073 |
1.1 2.2 3.3 |
|
| 1086 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1087 |
1.1 2.2 3.3 4.4 |
|
| 1095 |
1.1 2.2 |
|
| 1096 |
1.1 |
|
| 1097 |
1.1 |
|
| 1099 |
1.1 2.2 |
|
| 1101 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 |
|
| 1135 |
1.1 |
|
| 1137 |
1.1 2.2 |
|
| 1139 |
1.1 2.2 3.3 |
|
| 1140 |
1.1 |
|
| 1141 |
1.1 |
|
| 1143 |
1.1 |
|
| 1145 |
1.1 2.2 3.3 |
|
| 1152 |
1.1 2.2 3.3 |
|
| 1165 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1166 |
1.1 2.2 3.3 4.4 |
|
| 1174 |
1.1 2.2 |
|
| 1176 |
1.1 |
|
| 1177 |
1.1 |
|
| 1178 |
1.1 |
|
| 1181 |
1.1 2.2 3.3 4.4 5.5 |
|
| 1182 |
1.1 |
|
| 1183 |
1.1 2.2 |
|
| 1184 |
1.1 |
|
| 1185 |
1.1 2.2 3.3 |
|
| 1187 |
1.1 |
|
| 1192 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 |
|
| 1219 |
1.1 |
|
| 1220 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 |
|
| 1223 |
1.1 |
|
| 1226 |
1.1 |
|
| 1229 |
1.1 2.2 3.3 4.4 5.5 |
|
| 1230 |
1.1 |
|
| 1231 |
1.1 2.2 3.3 4.4 5.5 |
|
| 1232 |
1.1 |
|
| 1234 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 |
|
| 1246 |
1.1 |
|
| 1249 |
1.1 2.2 |
|
| 1250 |
1.1 |
|
| 1256 |
1.1 2.2 |
|
| 1259 |
1.1 2.2 |
|
| 1260 |
1.1 |
|
| 1264 |
1.1 2.2 3.3 |
|
| 1265 |
1.1 |
|
| 1266 |
1.1 |
|
| 1268 |
1.1 |
|
| 1270 |
1.1 2.2 3.3 |
|
| 1277 |
1.1 2.2 3.3 |
|
| 1290 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1291 |
1.1 2.2 3.3 4.4 |
|
| 1298 |
1.1 2.2 |
|
| 1299 |
1.1 |
|
| 1300 |
1.1 |
|
| 1302 |
1.1 |
|
| 1303 |
1.1 |
|
| 1305 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1312 |
1.1 2.2 |
|
| 1313 |
1.1 |
|
| 1315 |
1.1 2.2 |
|
| 1317 |
1.1 2.2 3.3 |
|
| 1318 |
1.1 |
|
| 1319 |
1.1 |
|
| 1321 |
1.1 |
|
| 1323 |
1.1 2.2 3.3 |
|
| 1330 |
1.1 2.2 3.3 |
|
| 1343 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1344 |
1.1 2.2 3.3 4.4 |
|
| 1351 |
1.1 2.2 |
|
| 1352 |
1.1 |
|
| 1353 |
1.1 |
|
| 1355 |
1.1 |
|
| 1356 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1358 |
1.1 2.2 |
|
| 1359 |
1.1 |
|
| 1365 |
1.1 2.2 3.3 |
|
| 1366 |
1.1 |
|
| 1367 |
1.1 |
|
| 1369 |
1.1 |
|
| 1371 |
1.1 2.2 3.3 |
|
| 1378 |
1.1 2.2 3.3 |
|
| 1391 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1392 |
1.1 2.2 3.3 4.4 |
|
| 1399 |
1.1 2.2 |
|
| 1400 |
1.1 |
|
| 1401 |
1.1 |
|
| 1403 |
1.1 2.2 |
|
| 1405 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1412 |
1.1 2.2 |
|
| 1413 |
1.1 2.2 |
|
| 1416 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1417 |
1.1 2.2 3.3 4.4 |
|
| 1424 |
1.1 2.2 |
|
| 1425 |
1.1 |
|
| 1426 |
1.1 |
|
| 1428 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 94.94 |
|
| 1430 |
1.1 |
|
| 1459 |
1.1 |
|
| 1462 |
1.1 2.2 |
|
| 1463 |
1.1 |
|
| 1466 |
1.1 2.2 3.3 |
|
| 1467 |
1.1 |
|
| 1468 |
1.1 |
|
| 1470 |
1.1 |
|
| 1472 |
1.1 2.2 3.3 |
|
| 1479 |
1.1 2.2 3.3 |
|
| 1492 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1493 |
1.1 2.2 3.3 4.4 |
|
| 1500 |
1.1 2.2 |
|
| 1501 |
1.1 |
|
| 1502 |
1.1 |
|
| 1504 |
1.1 2.2 |
|
| 1505 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 94.94 |
|
| 1534 |
1.1 |
|
| 1537 |
1.1 2.2 3.3 4.4 5.5 |
|
| 1542 |
1.1 2.2 |
|
| 1543 |
1.1 |
|
| 1549 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1551 |
1.1 2.2 |
|
| 1556 |
1.1 2.2 |
|
| 1558 |
1.1 2.2 3.3 |
|
| 1559 |
1.1 |
|
| 1560 |
1.1 |
|
| 1562 |
1.1 |
|
| 1564 |
1.1 2.2 3.3 |
|
| 1571 |
1.1 2.2 3.3 |
|
| 1584 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1585 |
1.1 2.2 3.3 4.4 |
|
| 1592 |
1.1 2.2 |
|
| 1593 |
1.1 |
|
| 1594 |
1.1 |
|
| 1596 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1598 |
1.1 |
|
| 1603 |
1.1 |
|
| 1604 |
1.1 |
|
| 1605 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1607 |
1.1 2.2 |
|
| 1608 |
1.1 |
|
| 1613 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 1615 |
1.1 |
|
| 1618 |
1.1 2.2 |
|
| 1621 |
1.1 2.2 |
|
| 1622 |
1.1 |
|
| 1625 |
1.1 2.2 3.3 |
|
| 1626 |
1.1 |
|
| 1627 |
1.1 |
|
| 1629 |
1.1 |
|
| 1631 |
1.1 2.2 3.3 |
|
| 1638 |
1.1 2.2 3.3 |
|
| 1651 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1652 |
1.1 2.2 3.3 4.4 |
|
| 1659 |
1.1 2.2 |
|
| 1660 |
1.1 |
|
| 1661 |
1.1 |
|
| 1663 |
1.1 2.2 |
|
| 1664 |
1.1 |
|
| 1666 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1673 |
1.1 2.2 |
|
| 1674 |
1.1 2.2 |
|
| 1677 |
1.1 2.2 3.3 |
|
| 1678 |
1.1 |
|
| 1679 |
1.1 |
|
| 1681 |
1.1 |
|
| 1683 |
1.1 2.2 3.3 |
|
| 1690 |
1.1 2.2 3.3 |
|
| 1703 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1704 |
1.1 2.2 3.3 4.4 |
|
| 1711 |
1.1 2.2 |
|
| 1712 |
1.1 |
|
| 1713 |
1.1 |
|
| 1715 |
1.1 2.2 |
|
| 1716 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 |
|
| 1727 |
1.1 |
|
| 1730 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1737 |
1.1 2.2 |
|
| 1738 |
1.1 |
|
| 1744 |
1.1 2.2 |
|
| 1746 |
1.1 2.2 3.3 |
|
| 1747 |
1.1 |
|
| 1748 |
1.1 |
|
| 1750 |
1.1 |
|
| 1752 |
1.1 2.2 3.3 |
|
| 1759 |
1.1 2.2 3.3 |
|
| 1772 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1773 |
1.1 2.2 3.3 4.4 |
|
| 1780 |
1.1 2.2 |
|
| 1781 |
1.1 |
|
| 1782 |
1.1 |
|
| 1784 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1786 |
1.1 2.2 |
|
| 1791 |
1.1 |
|
| 1792 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1794 |
1.1 2.2 |
|
| 1799 |
1.1 |
|
| 1801 |
1.1 2.2 3.3 |
|
| 1802 |
1.1 |
|
| 1803 |
1.1 |
|
| 1805 |
1.1 |
|
| 1807 |
1.1 2.2 3.3 |
|
| 1814 |
1.1 2.2 3.3 |
|
| 1827 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1828 |
1.1 2.2 3.3 4.4 |
|
| 1835 |
1.1 2.2 |
|
| 1836 |
1.1 |
|
| 1837 |
1.1 |
|
| 1839 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1841 |
1.1 |
|
| 1846 |
1.1 2.2 |
|
| 1847 |
1.1 |
|
| 1848 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 1850 |
1.1 2.2 |
|
| 1851 |
1.1 |
|
| 1856 |
1.1 2.2 |
|
| 1857 |
1.1 2.2 3.3 4.4 5.5 |
|
| 1858 |
1.1 |
|
| 1863 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 |
|
| 1909 |
1.1 |
|
| 1911 |
1.1 2.2 |
|
| 1913 |
1.1 2.2 3.3 |
|
| 1914 |
1.1 |
|
| 1915 |
1.1 |
|
| 1917 |
1.1 |
|
| 1919 |
1.1 2.2 3.3 |
|
| 1926 |
1.1 2.2 3.3 |
|
| 1939 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 1940 |
1.1 2.2 3.3 4.4 |
|
| 1947 |
1.1 2.2 |
|
| 1949 |
1.1 |
|
| 1950 |
1.1 |
|
| 1952 |
1.1 2.2 3.3 4.4 5.5 |
|
| 1953 |
1.1 2.2 |
|
| 1954 |
1.1 |
|
| 1955 |
1.1 2.2 |
|
| 1957 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 |
|
| 1979 |
1.1 2.2 3.3 4.4 5.5 |
|
| 1980 |
1.1 |
|
| 1981 |
1.1 2.2 |
|
| 1985 |
1.1 2.2 |
|
| 1986 |
1.1 |
|
| 1987 |
1.1 2.2 |
|
| 1990 |
1.1 2.2 |
|
| 1991 |
1.1 |
|
| 1995 |
1.1 2.2 3.3 |
|
| 1996 |
1.1 |
|
| 1997 |
1.1 |
|
| 1999 |
1.1 |
|
| 2001 |
1.1 2.2 3.3 |
|
| 2008 |
1.1 2.2 3.3 |
|
| 2021 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2022 |
1.1 2.2 3.3 4.4 |
|
| 2029 |
1.1 2.2 |
|
| 2030 |
1.1 |
|
| 2031 |
1.1 |
|
| 2033 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2035 |
1.1 2.2 |
|
| 2040 |
1.1 |
|
| 2042 |
1.1 2.2 3.3 |
|
| 2043 |
1.1 |
|
| 2044 |
1.1 |
|
| 2046 |
1.1 |
|
| 2048 |
1.1 2.2 3.3 |
|
| 2055 |
1.1 2.2 3.3 |
|
| 2068 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2069 |
1.1 2.2 3.3 4.4 |
|
| 2079 |
1.1 2.2 |
|
| 2080 |
1.1 |
|
| 2081 |
1.1 |
|
| 2083 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2084 |
1.1 |
|
| 2086 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 |
|
| 2095 |
1.1 |
|
| 2098 |
1.1 2.2 |
|
| 2099 |
1.1 |
|
| 2103 |
1.1 2.2 3.3 |
|
| 2104 |
1.1 |
|
| 2105 |
1.1 |
|
| 2107 |
1.1 |
|
| 2109 |
1.1 2.2 3.3 |
|
| 2116 |
1.1 2.2 3.3 |
|
| 2129 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2130 |
1.1 2.2 3.3 4.4 |
|
| 2137 |
1.1 2.2 |
|
| 2138 |
1.1 |
|
| 2139 |
1.1 |
|
| 2141 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 |
|
| 2150 |
1.1 |
|
| 2153 |
1.1 2.2 |
|
| 2154 |
1.1 2.2 |
|
| 2155 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2163 |
1.1 |
|
| 2166 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2171 |
1.1 2.2 |
|
| 2172 |
1.1 2.2 |
|
| 2176 |
1.1 2.2 |
|
| 2177 |
1.1 |
|
| 2180 |
1.1 2.2 3.3 |
|
| 2181 |
1.1 |
|
| 2182 |
1.1 |
|
| 2184 |
1.1 |
|
| 2186 |
1.1 2.2 3.3 |
|
| 2193 |
1.1 2.2 3.3 |
|
| 2206 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2207 |
1.1 2.2 3.3 4.4 |
|
| 2214 |
1.1 2.2 |
|
| 2215 |
1.1 |
|
| 2216 |
1.1 |
|
| 2218 |
1.1 2.2 |
|
| 2219 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2220 |
1.1 |
|
| 2225 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2230 |
1.1 2.2 |
|
| 2231 |
1.1 2.2 |
|
| 2232 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2233 |
1.1 |
|
| 2239 |
1.1 2.2 3.3 |
|
| 2240 |
1.1 |
|
| 2241 |
1.1 |
|
| 2243 |
1.1 |
|
| 2245 |
1.1 2.2 3.3 |
|
| 2252 |
1.1 2.2 3.3 |
|
| 2265 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2266 |
1.1 2.2 3.3 4.4 |
|
| 2273 |
1.1 2.2 |
|
| 2274 |
1.1 |
|
| 2275 |
1.1 |
|
| 2277 |
1.1 2.2 |
|
| 2278 |
1.1 |
|
| 2280 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2287 |
1.1 2.2 |
|
| 2288 |
1.1 |
|
| 2290 |
1.1 2.2 |
|
| 2292 |
1.1 2.2 3.3 |
|
| 2293 |
1.1 |
|
| 2294 |
1.1 |
|
| 2296 |
1.1 |
|
| 2298 |
1.1 2.2 3.3 |
|
| 2305 |
1.1 2.2 3.3 |
|
| 2318 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2319 |
1.1 2.2 3.3 4.4 |
|
| 2326 |
1.1 2.2 |
|
| 2327 |
1.1 |
|
| 2328 |
1.1 |
|
| 2330 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 |
|
| 2340 |
1.1 |
|
| 2343 |
1.1 2.2 |
|
| 2344 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 2347 |
1.1 |
|
| 2354 |
1.1 2.2 |
|
| 2355 |
1.1 |
|
| 2358 |
1.1 2.2 3.3 |
|
| 2359 |
1.1 |
|
| 2360 |
1.1 |
|
| 2362 |
1.1 |
|
| 2364 |
1.1 2.2 3.3 |
|
| 2371 |
1.1 2.2 3.3 |
|
| 2384 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2385 |
1.1 2.2 3.3 4.4 |
|
| 2392 |
1.1 2.2 |
|
| 2393 |
1.1 |
|
| 2394 |
1.1 |
|
| 2396 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 2398 |
1.1 2.2 |
|
| 2399 |
1.1 |
|
| 2402 |
1.1 2.2 |
|
| 2403 |
1.1 |
|
| 2406 |
1.1 2.2 |
|
| 2407 |
1.1 |
|
| 2410 |
1.1 2.2 3.3 |
|
| 2411 |
1.1 |
|
| 2412 |
1.1 |
|
| 2414 |
1.1 |
|
| 2416 |
1.1 2.2 3.3 |
|
| 2423 |
1.1 2.2 3.3 |
|
| 2436 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2437 |
1.1 2.2 3.3 4.4 |
|
| 2444 |
1.1 2.2 |
|
| 2445 |
1.1 |
|
| 2446 |
1.1 |
|
| 2448 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 |
|
| 2450 |
1.1 2.2 |
|
| 2453 |
1.1 2.2 |
|
| 2456 |
1.1 2.2 |
|
| 2459 |
1.1 2.2 |
|
| 2462 |
1.1 2.2 |
|
| 2465 |
1.1 2.2 |
|
| 2468 |
1.1 2.2 |
|
| 2471 |
1.1 2.2 |
|
| 2474 |
1.1 2.2 |
|
| 2475 |
1.1 |
|
| 2478 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2479 |
1.1 2.2 3.3 4.4 |
|
| 2486 |
1.1 2.2 |
|
| 2487 |
1.1 |
|
| 2488 |
1.1 |
|
| 2490 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 |
|
| 2492 |
1.1 2.2 |
|
| 2503 |
1.1 |
|
| 2506 |
1.1 2.2 |
|
| 2507 |
1.1 |
|
| 2510 |
1.1 2.2 3.3 |
|
| 2511 |
1.1 |
|
| 2512 |
1.1 |
|
| 2514 |
1.1 |
|
| 2516 |
1.1 2.2 3.3 |
|
| 2523 |
1.1 2.2 3.3 |
|
| 2536 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2537 |
1.1 2.2 3.3 4.4 |
|
| 2544 |
1.1 2.2 |
|
| 2545 |
1.1 |
|
| 2546 |
1.1 |
|
| 2548 |
1.1 2.2 |
|
| 2550 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2555 |
1.1 2.2 |
|
| 2556 |
1.1 2.2 |
|
| 2559 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2560 |
1.1 2.2 3.3 4.4 |
|
| 2567 |
1.1 2.2 |
|
| 2568 |
1.1 |
|
| 2569 |
1.1 |
|
| 2571 |
1.1 |
|
| 2573 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2580 |
1.1 2.2 |
|
| 2581 |
1.1 |
|
| 2584 |
1.1 2.2 3.3 |
|
| 2585 |
1.1 |
|
| 2586 |
1.1 |
|
| 2588 |
1.1 |
|
| 2590 |
1.1 2.2 3.3 |
|
| 2597 |
1.1 2.2 3.3 |
|
| 2610 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2611 |
1.1 2.2 3.3 4.4 |
|
| 2621 |
1.1 2.2 |
|
| 2622 |
1.1 |
|
| 2623 |
1.1 |
|
| 2625 |
1.1 |
|
| 2626 |
1.1 2.2 3.3 4.4 5.5 |
|
| 2627 |
1.1 |
|
| 2628 |
1.1 |
|
| 2633 |
1.1 2.2 3.3 |
|
| 2634 |
1.1 |
|
| 2635 |
1.1 |
|
| 2637 |
1.1 |
|
| 2639 |
1.1 2.2 3.3 |
|
| 2646 |
1.1 2.2 3.3 |
|
| 2659 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2660 |
1.1 2.2 3.3 4.4 |
|
| 2667 |
1.1 2.2 |
|
| 2668 |
1.1 |
|
| 2669 |
1.1 |
|
| 2671 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 |
|
| 2673 |
1.1 2.2 |
|
| 2676 |
1.1 2.2 |
|
| 2679 |
1.1 2.2 |
|
| 2682 |
1.1 2.2 |
|
| 2685 |
1.1 2.2 |
|
| 2688 |
1.1 2.2 |
|
| 2691 |
1.1 2.2 |
|
| 2694 |
1.1 2.2 |
|
| 2697 |
1.1 2.2 |
|
| 2700 |
1.1 2.2 |
|
| 2703 |
1.1 2.2 |
|
| 2706 |
1.1 2.2 |
|
| 2709 |
1.1 2.2 |
|
| 2710 |
1.1 |
|
| 2713 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2714 |
1.1 2.2 3.3 4.4 |
|
| 2721 |
1.1 2.2 |
|
| 2722 |
1.1 |
|
| 2723 |
1.1 |
|
| 2725 |
1.1 |
|
| 2726 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2728 |
1.1 2.2 |
|
| 2729 |
1.1 |
|
| 2730 |
1.1 2.2 |
|
| 2731 |
1.1 |
|
| 2737 |
1.1 2.2 3.3 |
|
| 2738 |
1.1 |
|
| 2739 |
1.1 |
|
| 2741 |
1.1 |
|
| 2743 |
1.1 2.2 3.3 |
|
| 2750 |
1.1 2.2 3.3 |
|
| 2763 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2764 |
1.1 2.2 3.3 4.4 |
|
| 2771 |
1.1 2.2 |
|
| 2772 |
1.1 |
|
| 2773 |
1.1 |
|
| 2775 |
1.1 |
|
| 2777 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2784 |
1.1 2.2 |
|
| 2785 |
1.1 |
|
| 2788 |
1.1 2.2 3.3 |
|
| 2789 |
1.1 |
|
| 2790 |
1.1 |
|
| 2792 |
1.1 |
|
| 2794 |
1.1 2.2 3.3 |
|
| 2801 |
1.1 2.2 3.3 |
|
| 2814 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2815 |
1.1 2.2 3.3 4.4 |
|
| 2822 |
1.1 2.2 |
|
| 2823 |
1.1 |
|
| 2824 |
1.1 |
|
| 2826 |
1.1 |
|
| 2828 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2835 |
1.1 2.2 |
|
| 2836 |
1.1 |
|
| 2839 |
1.1 2.2 3.3 |
|
| 2840 |
1.1 |
|
| 2841 |
1.1 |
|
| 2843 |
1.1 |
|
| 2845 |
1.1 2.2 3.3 |
|
| 2852 |
1.1 2.2 3.3 |
|
| 2865 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2866 |
1.1 2.2 3.3 4.4 |
|
| 2873 |
1.1 2.2 |
|
| 2874 |
1.1 |
|
| 2875 |
1.1 |
|
| 2877 |
1.1 |
|
| 2879 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2886 |
1.1 2.2 |
|
| 2887 |
1.1 |
|
| 2890 |
1.1 2.2 3.3 |
|
| 2891 |
1.1 |
|
| 2892 |
1.1 |
|
| 2894 |
1.1 |
|
| 2896 |
1.1 2.2 3.3 |
|
| 2903 |
1.1 2.2 3.3 |
|
| 2916 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2917 |
1.1 2.2 3.3 4.4 |
|
| 2924 |
1.1 2.2 |
|
| 2925 |
1.1 |
|
| 2926 |
1.1 |
|
| 2928 |
1.1 |
|
| 2930 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2937 |
1.1 2.2 |
|
| 2938 |
1.1 |
|
| 2941 |
1.1 2.2 3.3 |
|
| 2942 |
1.1 |
|
| 2943 |
1.1 |
|
| 2945 |
1.1 |
|
| 2947 |
1.1 2.2 3.3 |
|
| 2954 |
1.1 2.2 3.3 |
|
| 2967 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 2968 |
1.1 2.2 3.3 4.4 |
|
| 2975 |
1.1 2.2 |
|
| 2976 |
1.1 |
|
| 2977 |
1.1 |
|
| 2979 |
1.1 |
|
| 2981 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 2988 |
1.1 2.2 |
|
| 2989 |
1.1 |
|
| 2992 |
1.1 2.2 3.3 |
|
| 2993 |
1.1 |
|
| 2994 |
1.1 |
|
| 2996 |
1.1 |
|
| 2998 |
1.1 2.2 3.3 |
|
| 3005 |
1.1 2.2 3.3 |
|
| 3018 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3019 |
1.1 2.2 3.3 4.4 |
|
| 3026 |
1.1 2.2 |
|
| 3027 |
1.1 |
|
| 3028 |
1.1 |
|
| 3030 |
1.1 |
|
| 3032 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3040 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3042 |
1.1 2.2 |
|
| 3045 |
1.1 2.2 |
|
| 3048 |
1.1 2.2 |
|
| 3049 |
1.1 |
|
| 3051 |
1.1 |
|
| 3054 |
1.1 2.2 3.3 |
|
| 3055 |
1.1 |
|
| 3056 |
1.1 |
|
| 3058 |
1.1 |
|
| 3060 |
1.1 2.2 3.3 |
|
| 3067 |
1.1 2.2 3.3 |
|
| 3080 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3081 |
1.1 2.2 3.3 4.4 |
|
| 3088 |
1.1 2.2 |
|
| 3089 |
1.1 |
|
| 3090 |
1.1 |
|
| 3092 |
1.1 |
|
| 3093 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 3095 |
1.1 2.2 |
|
| 3096 |
1.1 |
|
| 3102 |
1.1 2.2 3.3 |
|
| 3103 |
1.1 |
|
| 3104 |
1.1 |
|
| 3106 |
1.1 |
|
| 3108 |
1.1 2.2 3.3 |
|
| 3115 |
1.1 2.2 3.3 |
|
| 3128 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3129 |
1.1 2.2 3.3 4.4 |
|
| 3136 |
1.1 2.2 |
|
| 3137 |
1.1 |
|
| 3138 |
1.1 |
|
| 3140 |
1.1 |
|
| 3142 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 |
|
| 3152 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 |
|
| 3154 |
1.1 2.2 |
|
| 3157 |
1.1 2.2 |
|
| 3160 |
1.1 2.2 |
|
| 3163 |
1.1 2.2 |
|
| 3166 |
1.1 2.2 |
|
| 3167 |
1.1 |
|
| 3169 |
1.1 |
|
| 3172 |
1.1 2.2 3.3 |
|
| 3173 |
1.1 |
|
| 3174 |
1.1 |
|
| 3176 |
1.1 |
|
| 3178 |
1.1 2.2 3.3 |
|
| 3185 |
1.1 2.2 3.3 |
|
| 3198 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3199 |
1.1 2.2 3.3 4.4 |
|
| 3206 |
1.1 2.2 |
|
| 3207 |
1.1 |
|
| 3208 |
1.1 |
|
| 3210 |
1.1 |
|
| 3212 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3217 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 3219 |
1.1 2.2 |
|
| 3222 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3223 |
1.1 |
|
| 3224 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3225 |
1.1 |
|
| 3227 |
1.1 2.2 |
|
| 3228 |
1.1 |
|
| 3231 |
1.1 |
|
| 3234 |
1.1 2.2 3.3 |
|
| 3235 |
1.1 |
|
| 3236 |
1.1 |
|
| 3238 |
1.1 |
|
| 3240 |
1.1 2.2 3.3 |
|
| 3247 |
1.1 2.2 3.3 |
|
| 3260 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3261 |
1.1 2.2 3.3 4.4 |
|
| 3268 |
1.1 2.2 |
|
| 3269 |
1.1 |
|
| 3270 |
1.1 |
|
| 3272 |
1.1 |
|
| 3274 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3282 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3284 |
1.1 2.2 |
|
| 3287 |
1.1 2.2 |
|
| 3290 |
1.1 2.2 |
|
| 3291 |
1.1 |
|
| 3293 |
1.1 |
|
| 3296 |
1.1 2.2 3.3 |
|
| 3297 |
1.1 |
|
| 3298 |
1.1 |
|
| 3300 |
1.1 |
|
| 3302 |
1.1 2.2 3.3 |
|
| 3309 |
1.1 2.2 3.3 |
|
| 3322 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3323 |
1.1 2.2 3.3 4.4 |
|
| 3330 |
1.1 2.2 |
|
| 3331 |
1.1 |
|
| 3332 |
1.1 |
|
| 3334 |
1.1 |
|
| 3336 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 |
|
| 3345 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 |
|
| 3347 |
1.1 2.2 |
|
| 3350 |
1.1 2.2 |
|
| 3353 |
1.1 2.2 |
|
| 3356 |
1.1 2.2 |
|
| 3357 |
1.1 |
|
| 3359 |
1.1 |
|
| 3362 |
1.1 2.2 3.3 |
|
| 3363 |
1.1 |
|
| 3364 |
1.1 |
|
| 3366 |
1.1 |
|
| 3368 |
1.1 2.2 3.3 |
|
| 3375 |
1.1 2.2 3.3 |
|
| 3388 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3389 |
1.1 2.2 3.3 4.4 |
|
| 3396 |
1.1 2.2 |
|
| 3397 |
1.1 |
|
| 3398 |
1.1 |
|
| 3400 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 94.94 |
|
| 3403 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3405 |
1.1 2.2 |
|
| 3408 |
1.1 2.2 |
|
| 3411 |
1.1 2.2 |
|
| 3412 |
1.1 |
|
| 3414 |
1.1 |
|
| 3417 |
1.1 |
|
| 3420 |
1.1 |
|
| 3445 |
1.1 |
|
| 3448 |
1.1 2.2 |
|
| 3449 |
1.1 |
|
| 3452 |
1.1 2.2 3.3 |
|
| 3453 |
1.1 |
|
| 3454 |
1.1 |
|
| 3456 |
1.1 |
|
| 3458 |
1.1 2.2 3.3 |
|
| 3465 |
1.1 2.2 3.3 |
|
| 3478 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3479 |
1.1 2.2 3.3 4.4 |
|
| 3486 |
1.1 2.2 |
|
| 3487 |
1.1 |
|
| 3488 |
1.1 |
|
| 3490 |
1.1 2.2 |
|
| 3491 |
1.1 |
|
| 3493 |
1.1 2.2 3.3 |
|
| 3494 |
1.1 |
|
| 3495 |
1.1 |
|
| 3497 |
1.1 |
|
| 3499 |
1.1 2.2 3.3 |
|
| 3506 |
1.1 2.2 3.3 |
|
| 3519 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3520 |
1.1 2.2 3.3 4.4 |
|
| 3527 |
1.1 2.2 |
|
| 3528 |
1.1 |
|
| 3529 |
1.1 |
|
| 3531 |
1.1 2.2 |
|
| 3532 |
1.1 |
|
| 3534 |
1.1 2.2 3.3 |
|
| 3535 |
1.1 |
|
| 3536 |
1.1 |
|
| 3538 |
1.1 |
|
| 3540 |
1.1 2.2 3.3 |
|
| 3547 |
1.1 2.2 3.3 |
|
| 3560 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3561 |
1.1 2.2 3.3 4.4 |
|
| 3568 |
1.1 2.2 |
|
| 3570 |
1.1 |
|
| 3571 |
1.1 |
|
| 3573 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3576 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3578 |
1.1 2.2 |
|
| 3581 |
1.1 2.2 |
|
| 3584 |
1.1 2.2 |
|
| 3585 |
1.1 |
|
| 3587 |
1.1 |
|
| 3590 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3591 |
1.1 |
|
| 3593 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 |
|
| 3615 |
1.1 |
|
| 3618 |
1.1 2.2 |
|
| 3619 |
1.1 |
|
| 3624 |
1.1 2.2 3.3 |
|
| 3625 |
1.1 |
|
| 3626 |
1.1 |
|
| 3628 |
1.1 |
|
| 3630 |
1.1 2.2 3.3 |
|
| 3637 |
1.1 2.2 3.3 |
|
| 3650 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3651 |
1.1 2.2 3.3 4.4 |
|
| 3661 |
1.1 2.2 |
|
| 3662 |
1.1 |
|
| 3663 |
1.1 |
|
| 3665 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3666 |
1.1 2.2 |
|
| 3667 |
1.1 |
|
| 3668 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3669 |
1.1 2.2 |
|
| 3670 |
1.1 |
|
| 3671 |
1.1 2.2 |
|
| 3672 |
1.1 2.2 |
|
| 3674 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 3676 |
1.1 2.2 |
|
| 3677 |
1.1 |
|
| 3678 |
1.1 2.2 |
|
| 3679 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 |
|
| 3681 |
1.1 2.2 |
|
| 3684 |
1.1 2.2 |
|
| 3687 |
1.1 2.2 |
|
| 3690 |
1.1 2.2 |
|
| 3693 |
1.1 2.2 |
|
| 3696 |
1.1 2.2 |
|
| 3699 |
1.1 2.2 |
|
| 3708 |
1.1 |
|
| 3711 |
1.1 2.2 |
|
| 3712 |
1.1 |
|
| 3716 |
1.1 2.2 |
|
| 3717 |
1.1 |
|
| 3721 |
1.1 2.2 3.3 |
|
| 3722 |
1.1 |
|
| 3723 |
1.1 |
|
| 3725 |
1.1 |
|
| 3727 |
1.1 2.2 3.3 |
|
| 3734 |
1.1 2.2 3.3 |
|
| 3747 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3748 |
1.1 2.2 3.3 4.4 |
|
| 3755 |
1.1 2.2 |
|
| 3756 |
1.1 |
|
| 3757 |
1.1 |
|
| 3759 |
1.1 |
|
| 3760 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3763 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 3765 |
1.1 2.2 |
|
| 3768 |
1.1 2.2 |
|
| 3771 |
1.1 2.2 |
|
| 3772 |
1.1 |
|
| 3779 |
1.1 2.2 3.3 |
|
| 3780 |
1.1 |
|
| 3781 |
1.1 |
|
| 3783 |
1.1 |
|
| 3785 |
1.1 2.2 3.3 |
|
| 3792 |
1.1 2.2 3.3 |
|
| 3805 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3806 |
1.1 2.2 3.3 4.4 |
|
| 3813 |
1.1 2.2 |
|
| 3814 |
1.1 |
|
| 3815 |
1.1 |
|
| 3817 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3818 |
1.1 2.2 |
|
| 3819 |
1.1 |
|
| 3820 |
1.1 2.2 |
|
| 3821 |
1.1 |
|
| 3823 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 3825 |
1.1 2.2 |
|
| 3826 |
1.1 |
|
| 3827 |
1.1 2.2 |
|
| 3828 |
1.1 |
|
| 3831 |
1.1 2.2 |
|
| 3832 |
1.1 |
|
| 3836 |
1.1 2.2 3.3 |
|
| 3837 |
1.1 |
|
| 3838 |
1.1 |
|
| 3840 |
1.1 |
|
| 3842 |
1.1 2.2 3.3 |
|
| 3849 |
1.1 2.2 3.3 |
|
| 3862 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3863 |
1.1 2.2 3.3 4.4 |
|
| 3870 |
1.1 2.2 |
|
| 3871 |
1.1 |
|
| 3872 |
1.1 |
|
| 3874 |
1.1 |
|
| 3876 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3881 |
1.1 |
|
| 3884 |
1.1 2.2 3.3 |
|
| 3885 |
1.1 |
|
| 3886 |
1.1 |
|
| 3888 |
1.1 |
|
| 3890 |
1.1 2.2 3.3 |
|
| 3897 |
1.1 2.2 3.3 |
|
| 3910 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3911 |
1.1 2.2 3.3 4.4 |
|
| 3918 |
1.1 2.2 |
|
| 3919 |
1.1 |
|
| 3920 |
1.1 |
|
| 3922 |
1.1 2.2 |
|
| 3923 |
1.1 |
|
| 3924 |
1.1 2.2 |
|
| 3926 |
1.1 2.2 3.3 |
|
| 3927 |
1.1 |
|
| 3928 |
1.1 |
|
| 3930 |
1.1 |
|
| 3932 |
1.1 2.2 3.3 |
|
| 3939 |
1.1 2.2 3.3 |
|
| 3952 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 3953 |
1.1 2.2 3.3 4.4 |
|
| 3960 |
1.1 2.2 |
|
| 3961 |
1.1 |
|
| 3962 |
1.1 |
|
| 3964 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 |
|
| 3972 |
1.1 |
|
| 3975 |
1.1 2.2 |
|
| 3978 |
1.1 2.2 |
|
| 3979 |
1.1 2.2 |
|
| 3980 |
1.1 2.2 |
|
| 3983 |
1.1 2.2 |
|
| 3984 |
1.1 |
|
| 3985 |
1.1 2.2 |
|
| 3988 |
1.1 |
|
| 3991 |
1.1 2.2 3.3 4.4 5.5 |
|
| 3992 |
1.1 |
|
| 3993 |
1.1 2.2 |
|
| 3994 |
1.1 2.2 |
|
| 3996 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 3998 |
1.1 |
|
| 4001 |
1.1 2.2 |
|
| 4002 |
1.1 |
|
| 4007 |
1.1 2.2 3.3 |
|
| 4008 |
1.1 |
|
| 4009 |
1.1 |
|
| 4011 |
1.1 |
|
| 4013 |
1.1 2.2 3.3 |
|
| 4020 |
1.1 2.2 3.3 |
|
| 4033 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4034 |
1.1 2.2 3.3 4.4 |
|
| 4041 |
1.1 2.2 |
|
| 4042 |
1.1 |
|
| 4043 |
1.1 |
|
| 4045 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4046 |
1.1 2.2 |
|
| 4047 |
1.1 2.2 |
|
| 4048 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4049 |
1.1 2.2 |
|
| 4050 |
1.1 |
|
| 4051 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4052 |
1.1 |
|
| 4054 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 |
|
| 4056 |
1.1 2.2 |
|
| 4057 |
1.1 |
|
| 4058 |
1.1 2.2 |
|
| 4061 |
1.1 2.2 |
|
| 4062 |
1.1 2.2 |
|
| 4065 |
1.1 |
|
| 4068 |
1.1 2.2 |
|
| 4069 |
1.1 |
|
| 4073 |
1.1 2.2 3.3 |
|
| 4074 |
1.1 |
|
| 4075 |
1.1 |
|
| 4077 |
1.1 |
|
| 4079 |
1.1 2.2 3.3 |
|
| 4086 |
1.1 2.2 3.3 |
|
| 4099 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4100 |
1.1 2.2 3.3 4.4 |
|
| 4107 |
1.1 2.2 |
|
| 4108 |
1.1 |
|
| 4109 |
1.1 |
|
| 4111 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 |
|
| 4113 |
1.1 2.2 |
|
| 4116 |
1.1 2.2 |
|
| 4119 |
1.1 2.2 |
|
| 4122 |
1.1 2.2 |
|
| 4126 |
1.1 |
|
| 4129 |
1.1 |
|
| 4132 |
1.1 2.2 |
|
| 4133 |
1.1 |
|
| 4136 |
1.1 2.2 3.3 |
|
| 4137 |
1.1 |
|
| 4138 |
1.1 |
|
| 4140 |
1.1 |
|
| 4142 |
1.1 2.2 3.3 |
|
| 4149 |
1.1 2.2 3.3 |
|
| 4162 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4163 |
1.1 2.2 3.3 4.4 |
|
| 4170 |
1.1 2.2 |
|
| 4171 |
1.1 |
|
| 4172 |
1.1 |
|
| 4174 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 4176 |
1.1 2.2 |
|
| 4179 |
1.1 2.2 |
|
| 4182 |
1.1 2.2 |
|
| 4183 |
1.1 |
|
| 4186 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4187 |
1.1 2.2 3.3 4.4 |
|
| 4194 |
1.1 2.2 |
|
| 4195 |
1.1 |
|
| 4196 |
1.1 |
|
| 4198 |
1.1 2.2 |
|
| 4200 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4201 |
1.1 2.2 3.3 4.4 |
|
| 4208 |
1.1 2.2 |
|
| 4209 |
1.1 |
|
| 4210 |
1.1 |
|
| 4212 |
1.1 2.2 |
|
| 4213 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 94.94 |
|
| 4241 |
1.1 |
|
| 4246 |
1.1 2.2 |
|
| 4248 |
1.1 2.2 3.3 |
|
| 4249 |
1.1 |
|
| 4250 |
1.1 |
|
| 4252 |
1.1 |
|
| 4254 |
1.1 2.2 3.3 |
|
| 4261 |
1.1 2.2 3.3 |
|
| 4274 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4275 |
1.1 2.2 3.3 4.4 |
|
| 4282 |
1.1 2.2 |
|
| 4283 |
1.1 |
|
| 4284 |
1.1 |
|
| 4286 |
1.1 |
|
| 4288 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4295 |
1.1 2.2 |
|
| 4296 |
1.1 |
|
| 4299 |
1.1 2.2 3.3 |
|
| 4300 |
1.1 |
|
| 4301 |
1.1 |
|
| 4303 |
1.1 |
|
| 4305 |
1.1 2.2 3.3 |
|
| 4312 |
1.1 2.2 3.3 |
|
| 4325 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4326 |
1.1 2.2 3.3 4.4 |
|
| 4333 |
1.1 2.2 |
|
| 4334 |
1.1 |
|
| 4335 |
1.1 |
|
| 4337 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4338 |
1.1 2.2 |
|
| 4339 |
1.1 |
|
| 4340 |
1.1 |
|
| 4342 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4344 |
1.1 2.2 |
|
| 4345 |
1.1 |
|
| 4346 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4348 |
1.1 |
|
| 4353 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 4355 |
1.1 |
|
| 4358 |
1.1 |
|
| 4359 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4361 |
1.1 2.2 |
|
| 4368 |
1.1 2.2 |
|
| 4369 |
1.1 |
|
| 4373 |
1.1 2.2 |
|
| 4374 |
1.1 |
|
| 4378 |
1.1 2.2 3.3 |
|
| 4379 |
1.1 |
|
| 4380 |
1.1 |
|
| 4382 |
1.1 |
|
| 4384 |
1.1 2.2 3.3 |
|
| 4391 |
1.1 2.2 3.3 |
|
| 4404 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4405 |
1.1 2.2 3.3 4.4 |
|
| 4416 |
1.1 2.2 |
|
| 4417 |
1.1 |
|
| 4418 |
1.1 |
|
| 4420 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4422 |
1.1 2.2 |
|
| 4423 |
1.1 |
|
| 4424 |
1.1 2.2 |
|
| 4425 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4432 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4437 |
1.1 2.2 |
|
| 4438 |
1.1 2.2 |
|
| 4441 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4445 |
1.1 2.2 |
|
| 4446 |
1.1 2.2 |
|
| 4447 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4455 |
1.1 |
|
| 4458 |
1.1 2.2 |
|
| 4459 |
1.1 |
|
| 4463 |
1.1 2.2 3.3 |
|
| 4464 |
1.1 |
|
| 4465 |
1.1 |
|
| 4467 |
1.1 |
|
| 4469 |
1.1 2.2 3.3 |
|
| 4476 |
1.1 2.2 3.3 |
|
| 4489 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4490 |
1.1 2.2 3.3 4.4 |
|
| 4500 |
1.1 2.2 |
|
| 4501 |
1.1 |
|
| 4502 |
1.1 |
|
| 4504 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4505 |
1.1 |
|
| 4507 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 |
|
| 4509 |
1.1 |
|
| 4512 |
1.1 |
|
| 4515 |
1.1 |
|
| 4540 |
1.1 |
|
| 4541 |
1.1 2.2 |
|
| 4544 |
1.1 |
|
| 4547 |
1.1 |
|
| 4550 |
1.1 |
|
| 4553 |
1.1 |
|
| 4556 |
1.1 |
|
| 4559 |
1.1 |
|
| 4562 |
1.1 |
|
| 4565 |
1.1 |
|
| 4568 |
1.1 |
|
| 4571 |
1.1 |
|
| 4574 |
1.1 |
|
| 4577 |
1.1 2.2 |
|
| 4578 |
1.1 |
|
| 4582 |
1.1 2.2 3.3 |
|
| 4583 |
1.1 |
|
| 4584 |
1.1 |
|
| 4586 |
1.1 |
|
| 4588 |
1.1 2.2 3.3 |
|
| 4595 |
1.1 2.2 3.3 |
|
| 4608 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4609 |
1.1 2.2 3.3 4.4 |
|
| 4616 |
1.1 2.2 |
|
| 4617 |
1.1 |
|
| 4618 |
1.1 |
|
| 4620 |
1.1 2.2 |
|
| 4621 |
1.1 |
|
| 4622 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4624 |
1.1 2.2 |
|
| 4625 |
1.1 |
|
| 4630 |
1.1 2.2 |
|
| 4632 |
1.1 2.2 3.3 |
|
| 4633 |
1.1 |
|
| 4634 |
1.1 |
|
| 4636 |
1.1 |
|
| 4638 |
1.1 2.2 3.3 |
|
| 4645 |
1.1 2.2 3.3 |
|
| 4658 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4659 |
1.1 2.2 3.3 4.4 |
|
| 4666 |
1.1 2.2 |
|
| 4667 |
1.1 |
|
| 4668 |
1.1 |
|
| 4670 |
1.1 2.2 |
|
| 4671 |
1.1 2.2 |
|
| 4672 |
1.1 |
|
| 4674 |
1.1 2.2 3.3 |
|
| 4675 |
1.1 |
|
| 4676 |
1.1 |
|
| 4678 |
1.1 |
|
| 4680 |
1.1 2.2 3.3 |
|
| 4687 |
1.1 2.2 3.3 |
|
| 4700 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4701 |
1.1 2.2 3.3 4.4 |
|
| 4708 |
1.1 2.2 |
|
| 4709 |
1.1 |
|
| 4710 |
1.1 |
|
| 4712 |
1.1 2.2 |
|
| 4714 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 |
|
| 4760 |
1.1 |
|
| 4762 |
1.1 2.2 |
|
| 4764 |
1.1 2.2 3.3 |
|
| 4765 |
1.1 |
|
| 4766 |
1.1 |
|
| 4768 |
1.1 |
|
| 4770 |
1.1 2.2 3.3 |
|
| 4777 |
1.1 2.2 3.3 |
|
| 4790 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4791 |
1.1 2.2 3.3 4.4 |
|
| 4798 |
1.1 2.2 |
|
| 4799 |
1.1 |
|
| 4800 |
1.1 |
|
| 4802 |
1.1 2.2 3.3 4.4 5.5 |
|
| 4803 |
1.1 |
|
| 4804 |
1.1 2.2 |
|
| 4806 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 |
|
| 4844 |
1.1 |
|
| 4848 |
1.1 2.2 |
|
| 4851 |
1.1 2.2 |
|
| 4852 |
1.1 |
|
| 4856 |
1.1 2.2 3.3 |
|
| 4857 |
1.1 |
|
| 4858 |
1.1 |
|
| 4860 |
1.1 |
|
| 4862 |
1.1 2.2 3.3 |
|
| 4869 |
1.1 2.2 3.3 |
|
| 4882 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4883 |
1.1 2.2 3.3 4.4 |
|
| 4890 |
1.1 2.2 |
|
| 4891 |
1.1 |
|
| 4892 |
1.1 |
|
| 4894 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4896 |
1.1 2.2 |
|
| 4901 |
1.1 |
|
| 4902 |
1.1 |
|
| 4904 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 4911 |
1.1 2.2 |
|
| 4912 |
1.1 |
|
| 4915 |
1.1 2.2 3.3 |
|
| 4916 |
1.1 |
|
| 4917 |
1.1 |
|
| 4919 |
1.1 |
|
| 4921 |
1.1 2.2 3.3 |
|
| 4928 |
1.1 2.2 3.3 |
|
| 4941 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4942 |
1.1 2.2 3.3 4.4 |
|
| 4949 |
1.1 2.2 |
|
| 4950 |
1.1 |
|
| 4951 |
1.1 |
|
| 4953 |
1.1 2.2 |
|
| 4955 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 4956 |
1.1 2.2 3.3 4.4 |
|
| 4963 |
1.1 2.2 |
|
| 4964 |
1.1 |
|
| 4965 |
1.1 |
|
| 4967 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 |
|
| 4969 |
1.1 |
|
| 4972 |
1.1 |
|
| 4995 |
1.1 |
|
| 4996 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 |
|
| 5011 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 |
|
| 5013 |
1.1 2.2 |
|
| 5016 |
1.1 2.2 |
|
| 5030 |
1.1 |
|
| 5031 |
1.1 |
|
| 5034 |
1.1 2.2 |
|
| 5035 |
1.1 |
|
| 5043 |
1.1 2.2 |
|
| 5044 |
1.1 |
|
| 5047 |
1.1 2.2 3.3 |
|
| 5048 |
1.1 |
|
| 5049 |
1.1 |
|
| 5051 |
1.1 |
|
| 5053 |
1.1 2.2 3.3 |
|
| 5060 |
1.1 2.2 3.3 |
|
| 5073 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5074 |
1.1 2.2 3.3 4.4 |
|
| 5081 |
1.1 2.2 |
|
| 5082 |
1.1 |
|
| 5083 |
1.1 |
|
| 5085 |
1.1 2.2 |
|
| 5086 |
1.1 2.2 |
|
| 5087 |
1.1 |
|
| 5088 |
1.1 2.2 |
|
| 5089 |
1.1 2.2 |
|
| 5091 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 5099 |
1.1 |
|
| 5101 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 |
|
| 5147 |
1.1 |
|
| 5150 |
1.1 2.2 |
|
| 5152 |
1.1 2.2 3.3 |
|
| 5153 |
1.1 |
|
| 5154 |
1.1 |
|
| 5156 |
1.1 |
|
| 5158 |
1.1 2.2 3.3 |
|
| 5165 |
1.1 2.2 3.3 |
|
| 5178 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5179 |
1.1 2.2 3.3 4.4 |
|
| 5186 |
1.1 2.2 |
|
| 5187 |
1.1 |
|
| 5188 |
1.1 |
|
| 5190 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 5192 |
1.1 2.2 |
|
| 5193 |
1.1 |
|
| 5194 |
1.1 2.2 |
|
| 5197 |
1.1 2.2 |
|
| 5198 |
1.1 2.2 |
|
| 5201 |
1.1 2.2 |
|
| 5202 |
1.1 |
|
| 5205 |
1.1 2.2 3.3 |
|
| 5206 |
1.1 |
|
| 5207 |
1.1 |
|
| 5209 |
1.1 |
|
| 5211 |
1.1 2.2 3.3 |
|
| 5218 |
1.1 2.2 3.3 |
|
| 5231 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5232 |
1.1 2.2 3.3 4.4 |
|
| 5239 |
1.1 2.2 |
|
| 5240 |
1.1 |
|
| 5241 |
1.1 |
|
| 5243 |
1.1 2.2 |
|
| 5244 |
1.1 2.2 |
|
| 5245 |
1.1 |
|
| 5246 |
1.1 2.2 |
|
| 5247 |
1.1 |
|
| 5248 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 5250 |
1.1 2.2 |
|
| 5251 |
1.1 |
|
| 5257 |
1.1 2.2 3.3 |
|
| 5258 |
1.1 |
|
| 5259 |
1.1 |
|
| 5261 |
1.1 |
|
| 5263 |
1.1 2.2 3.3 |
|
| 5270 |
1.1 2.2 3.3 |
|
| 5283 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5284 |
1.1 2.2 3.3 4.4 |
|
| 5291 |
1.1 2.2 |
|
| 5292 |
1.1 |
|
| 5293 |
1.1 |
|
| 5295 |
1.1 2.2 |
|
| 5296 |
1.1 2.2 |
|
| 5297 |
1.1 |
|
| 5298 |
1.1 2.2 |
|
| 5299 |
1.1 |
|
| 5301 |
1.1 2.2 3.3 |
|
| 5302 |
1.1 |
|
| 5303 |
1.1 |
|
| 5305 |
1.1 |
|
| 5307 |
1.1 2.2 3.3 |
|
| 5314 |
1.1 2.2 3.3 |
|
| 5327 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5328 |
1.1 2.2 3.3 4.4 |
|
| 5335 |
1.1 2.2 |
|
| 5336 |
1.1 |
|
| 5337 |
1.1 |
|
| 5339 |
1.1 2.2 |
|
| 5340 |
1.1 |
|
| 5341 |
1.1 2.2 |
|
| 5342 |
1.1 2.2 |
|
| 5343 |
1.1 |
|
| 5344 |
1.1 2.2 |
|
| 5345 |
1.1 2.2 |
|
| 5347 |
1.1 2.2 3.3 |
|
| 5348 |
1.1 |
|
| 5349 |
1.1 |
|
| 5351 |
1.1 |
|
| 5353 |
1.1 2.2 3.3 |
|
| 5360 |
1.1 2.2 3.3 |
|
| 5373 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5374 |
1.1 2.2 3.3 4.4 |
|
| 5381 |
1.1 2.2 |
|
| 5382 |
1.1 |
|
| 5383 |
1.1 |
|
| 5385 |
1.1 2.2 |
|
| 5386 |
1.1 2.2 |
|
| 5387 |
1.1 2.2 3.3 4.4 5.5 |
|
| 5388 |
1.1 |
|
| 5389 |
1.1 2.2 |
|
| 5390 |
1.1 2.2 |
|
| 5391 |
1.1 |
|
| 5393 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 |
|
| 5419 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 |
|
| 5444 |
1.1 |
|
| 5449 |
1.1 2.2 |
|
| 5450 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 94.94 |
|
| 5478 |
1.1 |
|
| 5483 |
1.1 2.2 |
|
| 5484 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 |
|
| 5508 |
1.1 |
|
| 5515 |
1.1 2.2 |
|
| 5516 |
1.1 |
|
| 5519 |
1.1 2.2 |
|
| 5520 |
1.1 |
|
| 5522 |
1.1 2.2 3.3 |
|
| 5523 |
1.1 |
|
| 5524 |
1.1 |
|
| 5526 |
1.1 |
|
| 5528 |
1.1 2.2 3.3 |
|
| 5535 |
1.1 2.2 3.3 |
|
| 5548 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5549 |
1.1 2.2 3.3 4.4 |
|
| 5556 |
1.1 2.2 |
|
| 5557 |
1.1 |
|
| 5558 |
1.1 |
|
| 5560 |
1.1 2.2 3.3 4.4 5.5 |
|
| 5561 |
1.1 |
|
| 5563 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 |
|
| 5587 |
1.1 |
|
| 5590 |
1.1 2.2 |
|
| 5591 |
1.1 |
|
| 5595 |
1.1 2.2 3.3 |
|
| 5596 |
1.1 |
|
| 5597 |
1.1 |
|
| 5599 |
1.1 |
|
| 5601 |
1.1 2.2 3.3 |
|
| 5608 |
1.1 2.2 3.3 |
|
| 5621 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5622 |
1.1 2.2 3.3 4.4 |
|
| 5629 |
1.1 2.2 |
|
| 5630 |
1.1 |
|
| 5631 |
1.1 |
|
| 5633 |
1.1 |
|
| 5635 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 5642 |
1.1 2.2 |
|
| 5643 |
1.1 |
|
| 5646 |
1.1 2.2 3.3 |
|
| 5647 |
1.1 |
|
| 5648 |
1.1 |
|
| 5650 |
1.1 |
|
| 5652 |
1.1 2.2 3.3 |
|
| 5659 |
1.1 2.2 3.3 |
|
| 5672 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5673 |
1.1 2.2 3.3 4.4 |
|
| 5680 |
1.1 2.2 |
|
| 5681 |
1.1 |
|
| 5682 |
1.1 |
|
| 5684 |
1.1 |
|
| 5686 |
1.1 2.2 3.3 |
|
| 5687 |
1.1 |
|
| 5688 |
1.1 |
|
| 5690 |
1.1 |
|
| 5692 |
1.1 2.2 3.3 |
|
| 5699 |
1.1 2.2 3.3 |
|
| 5712 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5713 |
1.1 2.2 3.3 4.4 |
|
| 5720 |
1.1 2.2 |
|
| 5721 |
1.1 |
|
| 5722 |
1.1 |
|
| 5724 |
1.1 2.2 |
|
| 5725 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 5727 |
1.1 2.2 |
|
| 5732 |
1.1 2.2 |
|
| 5734 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5735 |
1.1 2.2 3.3 4.4 |
|
| 5742 |
1.1 2.2 |
|
| 5743 |
1.1 |
|
| 5744 |
1.1 |
|
| 5746 |
1.1 2.2 |
|
| 5747 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 5749 |
1.1 2.2 |
|
| 5754 |
1.1 2.2 |
|
| 5756 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5757 |
1.1 2.2 3.3 4.4 |
|
| 5764 |
1.1 2.2 |
|
| 5765 |
1.1 |
|
| 5766 |
1.1 |
|
| 5768 |
1.1 2.2 |
|
| 5769 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 94.94 |
|
| 5797 |
1.1 |
|
| 5802 |
1.1 2.2 |
|
| 5804 |
1.1 2.2 3.3 |
|
| 5805 |
1.1 |
|
| 5806 |
1.1 |
|
| 5808 |
1.1 |
|
| 5810 |
1.1 2.2 3.3 |
|
| 5817 |
1.1 2.2 3.3 |
|
| 5830 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5831 |
1.1 2.2 3.3 4.4 |
|
| 5838 |
1.1 2.2 |
|
| 5839 |
1.1 |
|
| 5840 |
1.1 |
|
| 5842 |
1.1 2.2 |
|
| 5843 |
1.1 |
|
| 5844 |
1.1 2.2 |
|
| 5846 |
1.1 2.2 3.3 |
|
| 5847 |
1.1 |
|
| 5848 |
1.1 |
|
| 5850 |
1.1 |
|
| 5852 |
1.1 2.2 3.3 |
|
| 5859 |
1.1 2.2 3.3 |
|
| 5872 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5873 |
1.1 2.2 3.3 4.4 |
|
| 5880 |
1.1 2.2 |
|
| 5881 |
1.1 |
|
| 5882 |
1.1 |
|
| 5884 |
1.1 2.2 |
|
| 5885 |
1.1 2.2 |
|
| 5886 |
1.1 |
|
| 5887 |
1.1 2.2 |
|
| 5888 |
1.1 |
|
| 5890 |
1.1 2.2 3.3 |
|
| 5891 |
1.1 |
|
| 5892 |
1.1 |
|
| 5894 |
1.1 |
|
| 5896 |
1.1 2.2 3.3 |
|
| 5903 |
1.1 2.2 3.3 |
|
| 5916 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5917 |
1.1 2.2 3.3 4.4 |
|
| 5924 |
1.1 2.2 |
|
| 5925 |
1.1 |
|
| 5926 |
1.1 |
|
| 5928 |
1.1 2.2 |
|
| 5929 |
1.1 |
|
| 5931 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 5938 |
1.1 2.2 |
|
| 5939 |
1.1 2.2 |
|
| 5940 |
1.1 |
|
| 5941 |
1.1 2.2 |
|
| 5942 |
1.1 |
|
| 5944 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 5946 |
1.1 2.2 |
|
| 5947 |
1.1 |
|
| 5953 |
1.1 2.2 3.3 |
|
| 5954 |
1.1 |
|
| 5955 |
1.1 |
|
| 5957 |
1.1 |
|
| 5959 |
1.1 2.2 3.3 |
|
| 5966 |
1.1 2.2 3.3 |
|
| 5979 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 5980 |
1.1 2.2 3.3 4.4 |
|
| 5990 |
1.1 2.2 |
|
| 5991 |
1.1 |
|
| 5992 |
1.1 |
|
| 5994 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 |
|
| 5998 |
1.1 2.2 |
|
| 5999 |
1.1 |
|
| 6001 |
1.1 2.2 |
|
| 6002 |
1.1 2.2 |
|
| 6003 |
1.1 2.2 |
|
| 6005 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6006 |
1.1 2.2 3.3 4.4 |
|
| 6013 |
1.1 2.2 |
|
| 6014 |
1.1 |
|
| 6015 |
1.1 |
|
| 6017 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 |
|
| 6021 |
1.1 2.2 |
|
| 6022 |
1.1 |
|
| 6024 |
1.1 2.2 |
|
| 6025 |
1.1 2.2 |
|
| 6027 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6028 |
1.1 2.2 3.3 4.4 |
|
| 6036 |
1.1 2.2 |
|
| 6037 |
1.1 |
|
| 6038 |
1.1 |
|
| 6040 |
1.1 2.2 3.3 4.4 5.5 |
|
| 6041 |
1.1 |
|
| 6042 |
1.1 2.2 3.3 4.4 5.5 |
|
| 6043 |
1.1 |
|
| 6045 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 6047 |
1.1 |
|
| 6050 |
1.1 2.2 |
|
| 6051 |
1.1 |
|
| 6055 |
1.1 2.2 3.3 |
|
| 6056 |
1.1 |
|
| 6057 |
1.1 |
|
| 6059 |
1.1 |
|
| 6061 |
1.1 2.2 3.3 |
|
| 6068 |
1.1 2.2 3.3 |
|
| 6081 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6082 |
1.1 2.2 3.3 4.4 |
|
| 6089 |
1.1 2.2 |
|
| 6090 |
1.1 |
|
| 6091 |
1.1 |
|
| 6093 |
1.1 2.2 |
|
| 6094 |
1.1 |
|
| 6095 |
1.1 2.2 |
|
| 6096 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 6098 |
1.1 |
|
| 6103 |
1.1 2.2 |
|
| 6105 |
1.1 2.2 3.3 |
|
| 6106 |
1.1 |
|
| 6107 |
1.1 |
|
| 6109 |
1.1 |
|
| 6111 |
1.1 2.2 3.3 |
|
| 6118 |
1.1 2.2 3.3 |
|
| 6131 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6132 |
1.1 2.2 3.3 4.4 |
|
| 6139 |
1.1 2.2 |
|
| 6140 |
1.1 |
|
| 6141 |
1.1 |
|
| 6143 |
1.1 2.2 |
|
| 6144 |
1.1 |
|
| 6146 |
1.1 2.2 3.3 |
|
| 6147 |
1.1 |
|
| 6148 |
1.1 |
|
| 6150 |
1.1 |
|
| 6152 |
1.1 2.2 3.3 |
|
| 6159 |
1.1 2.2 3.3 |
|
| 6172 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6173 |
1.1 2.2 3.3 4.4 |
|
| 6180 |
1.1 2.2 |
|
| 6181 |
1.1 |
|
| 6182 |
1.1 |
|
| 6184 |
1.1 2.2 |
|
| 6185 |
1.1 |
|
| 6186 |
1.1 2.2 |
|
| 6187 |
1.1 |
|
| 6188 |
1.1 2.2 |
|
| 6190 |
1.1 2.2 3.3 |
|
| 6191 |
1.1 |
|
| 6192 |
1.1 |
|
| 6194 |
1.1 |
|
| 6196 |
1.1 2.2 3.3 |
|
| 6203 |
1.1 2.2 3.3 |
|
| 6216 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6217 |
1.1 2.2 3.3 4.4 |
|
| 6224 |
1.1 2.2 |
|
| 6225 |
1.1 |
|
| 6226 |
1.1 |
|
| 6228 |
1.1 |
|
| 6230 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 6237 |
1.1 2.2 |
|
| 6238 |
1.1 |
|
| 6241 |
1.1 2.2 3.3 |
|
| 6242 |
1.1 |
|
| 6243 |
1.1 |
|
| 6245 |
1.1 |
|
| 6247 |
1.1 2.2 3.3 |
|
| 6254 |
1.1 2.2 3.3 |
|
| 6267 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6268 |
1.1 2.2 3.3 4.4 |
|
| 6275 |
1.1 2.2 |
|
| 6276 |
1.1 |
|
| 6277 |
1.1 |
|
| 6279 |
1.1 2.2 |
|
| 6280 |
1.1 2.2 |
|
| 6281 |
1.1 |
|
| 6283 |
1.1 2.2 3.3 |
|
| 6284 |
1.1 |
|
| 6285 |
1.1 |
|
| 6287 |
1.1 |
|
| 6289 |
1.1 2.2 3.3 |
|
| 6296 |
1.1 2.2 3.3 |
|
| 6309 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6310 |
1.1 2.2 3.3 4.4 |
|
| 6317 |
1.1 2.2 |
|
| 6318 |
1.1 |
|
| 6319 |
1.1 |
|
| 6321 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 81.81 82.82 83.83 84.84 85.85 86.86 87.87 88.88 89.89 90.90 91.91 92.92 93.93 94.94 |
|
| 6323 |
1.1 |
|
| 6326 |
1.1 |
|
| 6355 |
1.1 |
|
| 6358 |
1.1 2.2 |
|
| 6359 |
1.1 |
|
| 6362 |
1.1 2.2 3.3 |
|
| 6363 |
1.1 |
|
| 6364 |
1.1 |
|
| 6366 |
1.1 |
|
| 6368 |
1.1 2.2 3.3 |
|
| 6375 |
1.1 2.2 3.3 |
|
| 6388 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6389 |
1.1 2.2 3.3 4.4 |
|
| 6396 |
1.1 2.2 |
|
| 6398 |
1.1 |
|
| 6399 |
1.1 |
|
| 6401 |
1.1 2.2 |
|
| 6402 |
1.1 |
|
| 6404 |
1.1 2.2 3.3 4.4 5.5 |
|
| 6409 |
1.1 2.2 |
|
| 6410 |
1.1 |
|
| 6412 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 6414 |
1.1 2.2 |
|
| 6419 |
1.1 2.2 |
|
| 6421 |
1.1 2.2 3.3 |
|
| 6422 |
1.1 |
|
| 6423 |
1.1 |
|
| 6425 |
1.1 |
|
| 6427 |
1.1 2.2 3.3 |
|
| 6434 |
1.1 2.2 3.3 |
|
| 6447 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6448 |
1.1 2.2 3.3 4.4 |
|
| 6457 |
1.1 2.2 |
|
| 6458 |
1.1 |
|
| 6459 |
1.1 |
|
| 6461 |
1.1 2.2 |
|
| 6462 |
1.1 2.2 |
|
| 6463 |
1.1 2.2 |
|
| 6464 |
1.1 |
|
| 6466 |
1.1 2.2 3.3 |
|
| 6467 |
1.1 |
|
| 6468 |
1.1 |
|
| 6470 |
1.1 |
|
| 6472 |
1.1 2.2 3.3 |
|
| 6479 |
1.1 2.2 3.3 |
|
| 6492 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6493 |
1.1 2.2 3.3 4.4 |
|
| 6500 |
1.1 2.2 |
|
| 6501 |
1.1 |
|
| 6502 |
1.1 |
|
| 6504 |
1.1 2.2 |
|
| 6506 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 |
|
| 6537 |
1.1 |
|
| 6539 |
1.1 2.2 |
|
| 6541 |
1.1 2.2 3.3 |
|
| 6542 |
1.1 |
|
| 6543 |
1.1 |
|
| 6545 |
1.1 |
|
| 6547 |
1.1 2.2 3.3 |
|
| 6554 |
1.1 2.2 3.3 |
|
| 6567 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6568 |
1.1 2.2 3.3 4.4 |
|
| 6575 |
1.1 2.2 |
|
| 6577 |
1.1 |
|
| 6578 |
1.1 |
|
| 6581 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 33.33 34.34 35.35 36.36 37.37 38.38 39.39 40.40 41.41 42.42 43.43 44.44 45.45 46.46 47.47 48.48 49.49 50.50 51.51 52.52 53.53 54.54 55.55 56.56 57.57 58.58 59.59 60.60 61.61 62.62 63.63 64.64 65.65 66.66 67.67 68.68 69.69 70.70 71.71 72.72 73.73 74.74 75.75 76.76 77.77 78.78 79.79 80.80 |
|
| 6606 |
1.1 |
|
| 6607 |
1.1 2.2 3.3 4.4 5.5 |
|
| 6608 |
1.1 |
|
| 6609 |
1.1 2.2 |
|
| 6610 |
1.1 2.2 |
|
| 6611 |
1.1 2.2 |
|
| 6612 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 6614 |
1.1 |
|
| 6619 |
1.1 2.2 |
|
| 6621 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 |
|
| 6624 |
1.1 |
|
| 6627 |
1.1 |
|
| 6630 |
1.1 |
|
| 6641 |
1.1 |
|
| 6644 |
1.1 2.2 |
|
| 6645 |
1.1 |
|
| 6650 |
1.1 2.2 |
|
| 6653 |
1.1 2.2 |
|
| 6654 |
1.1 |
|
| 6657 |
1.1 2.2 3.3 |
|
| 6658 |
1.1 |
|
| 6659 |
1.1 |
|
| 6661 |
1.1 |
|
| 6663 |
1.1 2.2 3.3 |
|
| 6670 |
1.1 2.2 3.3 |
|
| 6683 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6684 |
1.1 2.2 3.3 4.4 |
|
| 6691 |
1.1 2.2 |
|
| 6692 |
1.1 |
|
| 6693 |
1.1 |
|
| 6695 |
1.1 2.2 |
|
| 6696 |
1.1 |
|
| 6698 |
1.1 2.2 3.3 |
|
| 6699 |
1.1 |
|
| 6700 |
1.1 |
|
| 6702 |
1.1 |
|
| 6704 |
1.1 2.2 3.3 |
|
| 6711 |
1.1 2.2 3.3 |
|
| 6724 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 6725 |
1.1 2.2 3.3 4.4 |
|
| 6731 |
1.1 |
|
| 6732 |
1.1 2.2 |
|
| 6734 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6736 |
1.1 2.2 3.3 |
|
| 6741 |
1.1 |
|
| 6742 |
1.1 2.2 |
|
| 6744 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6746 |
1.1 2.2 3.3 |
|
| 6751 |
1.1 |
|
| 6752 |
1.1 2.2 |
|
| 6754 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6756 |
1.1 2.2 3.3 |
|
| 6761 |
1.1 |
|
| 6762 |
1.1 2.2 |
|
| 6764 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6766 |
1.1 2.2 3.3 |
|
| 6771 |
1.1 |
|
| 6772 |
1.1 2.2 |
|
| 6774 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6776 |
1.1 2.2 3.3 |
|
| 6781 |
1.1 |
|
| 6782 |
1.1 2.2 |
|
| 6784 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6786 |
1.1 2.2 3.3 |
|
| 6791 |
1.1 |
|
| 6792 |
1.1 2.2 |
|
| 6794 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6796 |
1.1 2.2 3.3 |
|
| 6801 |
1.1 |
|
| 6802 |
1.1 2.2 |
|
| 6804 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6806 |
1.1 2.2 3.3 |
|
| 6811 |
1.1 |
|
| 6812 |
1.1 2.2 |
|
| 6814 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6816 |
1.1 2.2 3.3 |
|
| 6821 |
1.1 |
|
| 6822 |
1.1 2.2 |
|
| 6824 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6826 |
1.1 2.2 3.3 |
|
| 6831 |
1.1 |
|
| 6832 |
1.1 2.2 |
|
| 6834 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6836 |
1.1 2.2 3.3 |
|
| 6841 |
1.1 |
|
| 6842 |
1.1 2.2 |
|
| 6844 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6846 |
1.1 2.2 3.3 |
|
| 6851 |
1.1 |
|
| 6852 |
1.1 2.2 |
|
| 6854 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6856 |
1.1 2.2 3.3 |
|
| 6861 |
1.1 |
|
| 6862 |
1.1 2.2 |
|
| 6864 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6866 |
1.1 2.2 3.3 |
|
| 6871 |
1.1 |
|
| 6872 |
1.1 2.2 |
|
| 6874 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6876 |
1.1 2.2 3.3 |
|
| 6881 |
1.1 |
|
| 6882 |
1.1 2.2 |
|
| 6884 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6886 |
1.1 2.2 3.3 |
|
| 6891 |
1.1 |
|
| 6892 |
1.1 2.2 |
|
| 6894 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6896 |
1.1 2.2 3.3 |
|
| 6901 |
1.1 |
|
| 6902 |
1.1 2.2 |
|
| 6904 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6906 |
1.1 2.2 3.3 |
|
| 6911 |
1.1 |
|
| 6912 |
1.1 2.2 |
|
| 6914 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6916 |
1.1 2.2 3.3 |
|
| 6921 |
1.1 |
|
| 6922 |
1.1 2.2 |
|
| 6924 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6926 |
1.1 2.2 3.3 |
|
| 6931 |
1.1 |
|
| 6932 |
1.1 2.2 |
|
| 6934 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6936 |
1.1 2.2 3.3 |
|
| 6941 |
1.1 |
|
| 6942 |
1.1 2.2 |
|
| 6944 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6946 |
1.1 2.2 3.3 |
|
| 6951 |
1.1 |
|
| 6952 |
1.1 2.2 |
|
| 6954 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6956 |
1.1 2.2 3.3 |
|
| 6961 |
1.1 |
|
| 6962 |
1.1 2.2 |
|
| 6964 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6966 |
1.1 2.2 3.3 |
|
| 6971 |
1.1 |
|
| 6972 |
1.1 2.2 |
|
| 6974 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6976 |
1.1 2.2 3.3 |
|
| 6981 |
1.1 |
|
| 6982 |
1.1 2.2 |
|
| 6984 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6986 |
1.1 2.2 3.3 |
|
| 6991 |
1.1 |
|
| 6992 |
1.1 2.2 |
|
| 6994 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 6996 |
1.1 2.2 3.3 |
|
| 7001 |
1.1 |
|
| 7002 |
1.1 2.2 |
|
| 7004 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7006 |
1.1 2.2 3.3 |
|
| 7011 |
1.1 |
|
| 7012 |
1.1 2.2 |
|
| 7014 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7016 |
1.1 2.2 3.3 |
|
| 7021 |
1.1 |
|
| 7022 |
1.1 2.2 |
|
| 7024 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7026 |
1.1 2.2 3.3 |
|
| 7031 |
1.1 |
|
| 7032 |
1.1 2.2 |
|
| 7034 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7036 |
1.1 2.2 3.3 |
|
| 7041 |
1.1 |
|
| 7042 |
1.1 2.2 |
|
| 7044 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7046 |
1.1 2.2 3.3 |
|
| 7051 |
1.1 |
|
| 7052 |
1.1 2.2 |
|
| 7054 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7056 |
1.1 2.2 3.3 |
|
| 7061 |
1.1 |
|
| 7062 |
1.1 2.2 |
|
| 7064 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7066 |
1.1 2.2 3.3 |
|
| 7071 |
1.1 |
|
| 7072 |
1.1 2.2 |
|
| 7074 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7076 |
1.1 2.2 3.3 |
|
| 7081 |
1.1 |
|
| 7082 |
1.1 2.2 |
|
| 7084 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7086 |
1.1 2.2 3.3 |
|
| 7091 |
1.1 |
|
| 7092 |
1.1 2.2 |
|
| 7094 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7096 |
1.1 2.2 3.3 |
|
| 7101 |
1.1 |
|
| 7102 |
1.1 2.2 |
|
| 7104 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7106 |
1.1 2.2 3.3 |
|
| 7111 |
1.1 |
|
| 7112 |
1.1 2.2 |
|
| 7114 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7116 |
1.1 2.2 3.3 |
|
| 7121 |
1.1 |
|
| 7122 |
1.1 2.2 |
|
| 7124 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 |
|
| 7126 |
1.1 2.2 3.3 |
|
| 7131 |
1.1 2.2 3.3 4.4 |
|
| 7132 |
1.1 2.2 3.3 |
|
| 7137 |
1.1 2.2 3.3 4.4 |
|
| 7138 |
1.1 |
|
| 7142 |
1.1 2.2 3.3 |
|
| 7146 |
1.1 2.2 3.3 4.4 |
|
| 7147 |
1.1 2.2 3.3 |
|
| 7150 |
1.1 2.2 3.3 4.4 |
|
| 7151 |
1.1 2.2 3.3 |
|
| 7154 |
1.1 2.2 3.3 4.4 |
|
| 7155 |
1.1 |
|
| 7159 |
1.1 2.2 3.3 |
|
| 7165 |
1.1 2.2 3.3 4.4 |
|
| 7166 |
1.1 |
|
| 7167 |
1.1 2.2 3.3 4.4 |
|
| 7168 |
1.1 2.2 3.3 |
|
| 7171 |
1.1 2.2 3.3 |
|
| 7175 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7176 |
1.1 2.2 3.3 |
|
| 7178 |
1.1 2.2 3.3 4.4 |
|
| 7179 |
1.1 2.2 3.3 |
|
| 7181 |
1.1 2.2 3.3 |
|
| 7185 |
1.1 2.2 3.3 4.4 |
|
| 7186 |
1.1 2.2 3.3 |
|
| 7188 |
1.1 2.2 3.3 |
|
| 7192 |
1.1 2.2 3.3 4.4 |
|
| 7193 |
1.1 2.2 3.3 |
|
| 7195 |
1.1 2.2 3.3 |
|
| 7201 |
1.1 2.2 3.3 4.4 |
|
| 7202 |
1.1 |
|
| 7203 |
1.1 2.2 3.3 4.4 |
|
| 7204 |
1.1 2.2 3.3 |
|
| 7207 |
1.1 2.2 3.3 |
|
| 7211 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7212 |
1.1 2.2 3.3 |
|
| 7214 |
1.1 2.2 3.3 4.4 |
|
| 7215 |
1.1 2.2 3.3 |
|
| 7217 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7218 |
1.1 2.2 3.3 |
|
| 7220 |
1.1 2.2 3.3 |
|
| 7226 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7227 |
1.1 |
|
| 7229 |
1.1 2.2 3.3 4.4 |
|
| 7230 |
1.1 2.2 3.3 |
|
| 7232 |
1.1 2.2 3.3 |
|
| 7236 |
1.1 2.2 3.3 4.4 |
|
| 7237 |
1.1 2.2 3.3 |
|
| 7239 |
1.1 2.2 3.3 |
|
| 7243 |
1.1 2.2 3.3 4.4 |
|
| 7244 |
1.1 2.2 3.3 |
|
| 7246 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7247 |
1.1 2.2 3.3 |
|
| 7249 |
1.1 2.2 3.3 |
|
| 7253 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7254 |
1.1 2.2 3.3 |
|
| 7256 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7257 |
1.1 2.2 3.3 |
|
| 7259 |
1.1 2.2 3.3 |
|
| 7265 |
1.1 2.2 3.3 4.4 |
|
| 7266 |
1.1 |
|
| 7268 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7269 |
1.1 2.2 3.3 |
|
| 7271 |
1.1 2.2 3.3 4.4 |
|
| 7272 |
1.1 2.2 3.3 |
|
| 7274 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7275 |
1.1 2.2 3.3 |
|
| 7277 |
1.1 2.2 3.3 |
|
| 7281 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7282 |
1.1 2.2 3.3 |
|
| 7284 |
1.1 2.2 3.3 4.4 |
|
| 7285 |
1.1 2.2 3.3 |
|
| 7287 |
1.1 2.2 3.3 |
|
| 7291 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7292 |
1.1 2.2 3.3 |
|
| 7294 |
1.1 2.2 3.3 4.4 |
|
| 7295 |
1.1 2.2 3.3 |
|
| 7297 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7298 |
1.1 2.2 3.3 |
|
| 7300 |
1.1 2.2 3.3 |
|
| 7306 |
1.1 2.2 3.3 4.4 |
|
| 7307 |
1.1 |
|
| 7308 |
1.1 2.2 3.3 4.4 |
|
| 7309 |
1.1 2.2 3.3 |
|
| 7312 |
1.1 2.2 3.3 |
|
| 7316 |
1.1 2.2 3.3 4.4 |
|
| 7317 |
1.1 2.2 3.3 |
|
| 7319 |
1.1 2.2 3.3 |
|
| 7323 |
1.1 2.2 3.3 4.4 |
|
| 7324 |
1.1 2.2 3.3 |
|
| 7326 |
1.1 2.2 3.3 |
|
| 7330 |
1.1 2.2 3.3 4.4 |
|
| 7331 |
1.1 2.2 3.3 |
|
| 7333 |
1.1 2.2 3.3 |
|
| 7339 |
1.1 2.2 3.3 4.4 |
|
| 7340 |
1.1 |
|
| 7342 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7343 |
1.1 2.2 3.3 |
|
| 7345 |
1.1 2.2 3.3 4.4 |
|
| 7346 |
1.1 2.2 3.3 |
|
| 7349 |
1.1 2.2 3.3 4.4 |
|
| 7350 |
1.1 |
|
| 7352 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7353 |
1.1 2.2 3.3 |
|
| 7356 |
1.1 2.2 3.3 4.4 |
|
| 7357 |
1.1 |
|
| 7360 |
1.1 2.2 3.3 4.4 |
|
| 7361 |
1.1 |
|
| 7365 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7366 |
1.1 2.2 3.3 |
|
| 7368 |
1.1 2.2 3.3 |
|
| 7372 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7373 |
1.1 2.2 3.3 |
|
| 7375 |
1.1 2.2 3.3 4.4 |
|
| 7376 |
1.1 2.2 3.3 |
|
| 7378 |
1.1 2.2 3.3 |
|
| 7382 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7383 |
1.1 2.2 3.3 |
|
| 7385 |
1.1 2.2 3.3 4.4 |
|
| 7386 |
1.1 2.2 3.3 |
|
| 7388 |
1.1 2.2 3.3 |
|
| 7394 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7395 |
1.1 |
|
| 7397 |
1.1 2.2 3.3 4.4 |
|
| 7398 |
1.1 2.2 3.3 |
|
| 7401 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7402 |
1.1 |
|
| 7404 |
1.1 2.2 3.3 4.4 |
|
| 7405 |
1.1 2.2 3.3 |
|
| 7407 |
1.1 2.2 3.3 |
|
| 7411 |
1.1 2.2 3.3 4.4 |
|
| 7412 |
1.1 2.2 3.3 |
|
| 7417 |
1.1 2.2 3.3 4.4 |
|
| 7418 |
1.1 |
|
| 7422 |
1.1 2.2 3.3 |
|
| 7426 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7427 |
1.1 2.2 3.3 |
|
| 7431 |
1.1 2.2 3.3 4.4 |
|
| 7432 |
1.1 |
|
| 7434 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7435 |
1.1 2.2 3.3 |
|
| 7437 |
1.1 2.2 3.3 |
|
| 7441 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7442 |
1.1 2.2 3.3 |
|
| 7444 |
1.1 2.2 3.3 4.4 |
|
| 7445 |
1.1 2.2 3.3 |
|
| 7450 |
1.1 2.2 3.3 4.4 |
|
| 7451 |
1.1 |
|
| 7455 |
1.1 2.2 3.3 |
|
| 7459 |
1.1 2.2 3.3 4.4 |
|
| 7460 |
1.1 2.2 3.3 |
|
| 7462 |
1.1 2.2 3.3 |
|
| 7466 |
1.1 2.2 3.3 4.4 |
|
| 7467 |
1.1 2.2 3.3 |
|
| 7469 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7470 |
1.1 2.2 3.3 |
|
| 7472 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7473 |
1.1 2.2 3.3 |
|
| 7475 |
1.1 2.2 3.3 |
|
| 7479 |
1.1 2.2 3.3 4.4 |
|
| 7480 |
1.1 2.2 3.3 |
|
| 7482 |
1.1 2.2 3.3 |
|
| 7486 |
1.1 2.2 3.3 4.4 |
|
| 7487 |
1.1 2.2 3.3 |
|
| 7492 |
1.1 2.2 3.3 4.4 |
|
| 7493 |
1.1 |
|
| 7497 |
1.1 2.2 3.3 |
|
| 7503 |
1.1 2.2 3.3 4.4 |
|
| 7504 |
1.1 |
|
| 7506 |
1.1 2.2 3.3 4.4 |
|
| 7507 |
1.1 2.2 3.3 |
|
| 7509 |
1.1 2.2 3.3 4.4 |
|
| 7510 |
1.1 2.2 3.3 |
|
| 7513 |
1.1 2.2 3.3 4.4 |
|
| 7514 |
1.1 |
|
| 7517 |
1.1 2.2 3.3 4.4 |
|
| 7518 |
1.1 |
|
| 7519 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7520 |
1.1 2.2 3.3 |
|
| 7523 |
1.1 2.2 3.3 |
|
| 7527 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7528 |
1.1 2.2 3.3 |
|
| 7530 |
1.1 2.2 3.3 4.4 |
|
| 7531 |
1.1 2.2 3.3 |
|
| 7533 |
1.1 2.2 3.3 |
|
| 7537 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7538 |
1.1 2.2 3.3 |
|
| 7540 |
1.1 2.2 3.3 4.4 |
|
| 7541 |
1.1 2.2 3.3 |
|
| 7543 |
1.1 2.2 3.3 |
|
| 7547 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7548 |
1.1 2.2 3.3 |
|
| 7550 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7551 |
1.1 2.2 3.3 |
|
| 7553 |
1.1 2.2 3.3 |
|
| 7557 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7558 |
1.1 2.2 3.3 |
|
| 7562 |
1.1 2.2 3.3 4.4 |
|
| 7563 |
1.1 |
|
| 7566 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7567 |
1.1 |
|
| 7569 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7570 |
1.1 2.2 3.3 |
|
| 7572 |
1.1 2.2 3.3 |
|
| 7576 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7577 |
1.1 2.2 3.3 |
|
| 7579 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7580 |
1.1 2.2 3.3 |
|
| 7582 |
1.1 2.2 3.3 |
|
| 7586 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7587 |
1.1 2.2 3.3 |
|
| 7589 |
1.1 2.2 3.3 4.4 |
|
| 7590 |
1.1 2.2 3.3 |
|
| 7592 |
1.1 2.2 3.3 |
|
| 7596 |
1.1 2.2 3.3 4.4 |
|
| 7597 |
1.1 2.2 3.3 |
|
| 7599 |
1.1 2.2 3.3 |
|
| 7603 |
1.1 2.2 3.3 4.4 |
|
| 7604 |
1.1 2.2 3.3 |
|
| 7606 |
1.1 2.2 3.3 |
|
| 7612 |
1.1 2.2 3.3 4.4 |
|
| 7613 |
1.1 |
|
| 7614 |
1.1 2.2 3.3 4.4 |
|
| 7615 |
1.1 2.2 3.3 |
|
| 7618 |
1.1 2.2 3.3 |
|
| 7622 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7623 |
1.1 2.2 3.3 |
|
| 7628 |
1.1 2.2 3.3 4.4 |
|
| 7629 |
1.1 |
|
| 7633 |
1.1 2.2 3.3 |
|
| 7637 |
1.1 2.2 3.3 4.4 |
|
| 7638 |
1.1 2.2 3.3 |
|
| 7642 |
1.1 2.2 3.3 4.4 |
|
| 7643 |
1.1 |
|
| 7645 |
1.1 2.2 3.3 |
|
| 7649 |
1.1 2.2 3.3 4.4 |
|
| 7650 |
1.1 2.2 3.3 |
|
| 7652 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7653 |
1.1 2.2 3.3 |
|
| 7658 |
1.1 2.2 3.3 4.4 |
|
| 7659 |
1.1 |
|
| 7664 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7665 |
1.1 |
|
| 7666 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7667 |
1.1 |
|
| 7668 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7669 |
1.1 2.2 3.3 |
|
| 7673 |
1.1 2.2 3.3 |
|
| 7677 |
1.1 2.2 3.3 4.4 |
|
| 7678 |
1.1 2.2 3.3 |
|
| 7680 |
1.1 2.2 3.3 |
|
| 7684 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7685 |
1.1 2.2 3.3 |
|
| 7687 |
1.1 2.2 3.3 4.4 |
|
| 7688 |
1.1 2.2 3.3 |
|
| 7693 |
1.1 2.2 3.3 4.4 |
|
| 7694 |
1.1 |
|
| 7699 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7700 |
1.1 |
|
| 7702 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7703 |
1.1 2.2 3.3 |
|
| 7705 |
1.1 2.2 3.3 |
|
| 7709 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7710 |
1.1 2.2 3.3 |
|
| 7712 |
1.1 2.2 3.3 4.4 |
|
| 7713 |
1.1 2.2 3.3 |
|
| 7715 |
1.1 2.2 3.3 |
|
| 7721 |
1.1 2.2 3.3 4.4 |
|
| 7722 |
1.1 |
|
| 7724 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7725 |
1.1 2.2 3.3 |
|
| 7727 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7728 |
1.1 2.2 3.3 |
|
| 7730 |
1.1 2.2 3.3 |
|
| 7734 |
1.1 2.2 3.3 4.4 |
|
| 7735 |
1.1 2.2 3.3 |
|
| 7737 |
1.1 2.2 3.3 4.4 |
|
| 7738 |
1.1 2.2 3.3 |
|
| 7743 |
1.1 2.2 3.3 4.4 |
|
| 7744 |
1.1 |
|
| 7748 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7749 |
1.1 2.2 3.3 |
|
| 7751 |
1.1 2.2 3.3 |
|
| 7755 |
1.1 2.2 3.3 4.4 |
|
| 7756 |
1.1 2.2 3.3 |
|
| 7758 |
1.1 2.2 3.3 |
|
| 7762 |
1.1 2.2 3.3 4.4 |
|
| 7763 |
1.1 2.2 3.3 |
|
| 7765 |
1.1 2.2 3.3 |
|
| 7769 |
1.1 2.2 3.3 4.4 |
|
| 7770 |
1.1 2.2 3.3 |
|
| 7772 |
1.1 2.2 3.3 |
|
| 7776 |
1.1 2.2 3.3 4.4 |
|
| 7777 |
1.1 2.2 3.3 |
|
| 7779 |
1.1 2.2 3.3 |
|
| 7785 |
1.1 2.2 3.3 4.4 |
|
| 7786 |
1.1 |
|
| 7787 |
1.1 2.2 3.3 4.4 |
|
| 7788 |
1.1 |
|
| 7789 |
1.1 2.2 3.3 4.4 |
|
| 7790 |
1.1 2.2 3.3 |
|
| 7794 |
1.1 2.2 3.3 |
|
| 7798 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7799 |
1.1 2.2 3.3 |
|
| 7801 |
1.1 2.2 3.3 4.4 |
|
| 7802 |
1.1 2.2 3.3 |
|
| 7804 |
1.1 2.2 3.3 |
|
| 7808 |
1.1 2.2 3.3 4.4 |
|
| 7809 |
1.1 2.2 3.3 |
|
| 7811 |
1.1 2.2 3.3 |
|
| 7815 |
1.1 2.2 3.3 4.4 |
|
| 7816 |
1.1 2.2 3.3 |
|
| 7818 |
1.1 2.2 3.3 |
|
| 7822 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7823 |
1.1 2.2 3.3 |
|
| 7825 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7826 |
1.1 2.2 3.3 |
|
| 7828 |
1.1 2.2 3.3 4.4 |
|
| 7829 |
1.1 2.2 3.3 |
|
| 7831 |
1.1 2.2 3.3 |
|
| 7835 |
1.1 2.2 3.3 4.4 |
|
| 7836 |
1.1 2.2 3.3 |
|
| 7838 |
1.1 2.2 3.3 |
|
| 7842 |
1.1 2.2 3.3 4.4 |
|
| 7843 |
1.1 2.2 3.3 |
|
| 7845 |
1.1 2.2 3.3 |
|
| 7849 |
1.1 2.2 3.3 4.4 |
|
| 7850 |
1.1 2.2 3.3 |
|
| 7855 |
1.1 2.2 3.3 4.4 |
|
| 7856 |
1.1 |
|
| 7860 |
1.1 2.2 3.3 |
|
| 7864 |
1.1 2.2 3.3 4.4 |
|
| 7865 |
1.1 2.2 3.3 |
|
| 7867 |
1.1 2.2 3.3 |
|
| 7871 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7872 |
1.1 2.2 3.3 |
|
| 7874 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7875 |
1.1 2.2 3.3 |
|
| 7877 |
1.1 2.2 3.3 |
|
| 7881 |
1.1 2.2 3.3 4.4 |
|
| 7882 |
1.1 2.2 3.3 |
|
| 7886 |
1.1 2.2 3.3 4.4 |
|
| 7887 |
1.1 |
|
| 7888 |
1.1 2.2 3.3 4.4 |
|
| 7889 |
1.1 |
|
| 7890 |
1.1 2.2 3.3 4.4 |
|
| 7891 |
1.1 |
|
| 7892 |
1.1 2.2 3.3 4.4 |
|
| 7893 |
1.1 |
|
| 7894 |
1.1 2.2 3.3 4.4 |
|
| 7895 |
1.1 2.2 3.3 |
|
| 7901 |
1.1 2.2 3.3 |
|
| 7905 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7906 |
1.1 2.2 3.3 |
|
| 7908 |
1.1 2.2 3.3 4.4 |
|
| 7909 |
1.1 2.2 3.3 |
|
| 7911 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7912 |
1.1 2.2 3.3 |
|
| 7914 |
1.1 2.2 3.3 4.4 |
|
| 7915 |
1.1 2.2 3.3 |
|
| 7917 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7918 |
1.1 2.2 3.3 |
|
| 7920 |
1.1 2.2 3.3 |
|
| 7924 |
1.1 2.2 3.3 4.4 |
|
| 7925 |
1.1 2.2 3.3 |
|
| 7927 |
1.1 2.2 3.3 |
|
| 7933 |
1.1 2.2 3.3 4.4 |
|
| 7934 |
1.1 |
|
| 7935 |
1.1 2.2 3.3 4.4 |
|
| 7936 |
1.1 |
|
| 7937 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7938 |
1.1 2.2 3.3 |
|
| 7942 |
1.1 2.2 3.3 |
|
| 7946 |
1.1 2.2 3.3 4.4 |
|
| 7947 |
1.1 2.2 3.3 |
|
| 7949 |
1.1 2.2 3.3 |
|
| 7953 |
1.1 2.2 3.3 4.4 |
|
| 7954 |
1.1 2.2 3.3 |
|
| 7956 |
1.1 2.2 3.3 |
|
| 7960 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7961 |
1.1 2.2 3.3 |
|
| 7963 |
1.1 2.2 3.3 4.4 |
|
| 7964 |
1.1 2.2 3.3 |
|
| 7966 |
1.1 2.2 3.3 |
|
| 7970 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7971 |
1.1 2.2 3.3 |
|
| 7973 |
1.1 2.2 3.3 4.4 |
|
| 7974 |
1.1 2.2 3.3 |
|
| 7976 |
1.1 2.2 3.3 |
|
| 7980 |
1.1 2.2 3.3 4.4 |
|
| 7981 |
1.1 2.2 3.3 |
|
| 7983 |
1.1 2.2 3.3 |
|
| 7987 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7988 |
1.1 2.2 3.3 |
|
| 7990 |
1.1 2.2 3.3 4.4 |
|
| 7991 |
1.1 2.2 3.3 |
|
| 7993 |
1.1 2.2 3.3 4.4 5.5 |
|
| 7994 |
1.1 2.2 3.3 |
|
| 7996 |
1.1 2.2 3.3 |
|
| 8000 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8001 |
1.1 2.2 3.3 |
|
| 8003 |
1.1 2.2 3.3 4.4 |
|
| 8004 |
1.1 2.2 3.3 |
|
| 8006 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8007 |
1.1 2.2 3.3 |
|
| 8011 |
1.1 2.2 3.3 4.4 |
|
| 8012 |
1.1 |
|
| 8014 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8015 |
1.1 2.2 3.3 |
|
| 8017 |
1.1 2.2 3.3 |
|
| 8021 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8022 |
1.1 2.2 3.3 |
|
| 8027 |
1.1 2.2 3.3 4.4 |
|
| 8028 |
1.1 |
|
| 8032 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8033 |
1.1 2.2 3.3 |
|
| 8035 |
1.1 2.2 3.3 |
|
| 8039 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8040 |
1.1 2.2 3.3 |
|
| 8042 |
1.1 2.2 3.3 4.4 |
|
| 8043 |
1.1 2.2 3.3 |
|
| 8045 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8046 |
1.1 2.2 3.3 |
|
| 8050 |
1.1 2.2 3.3 4.4 |
|
| 8051 |
1.1 |
|
| 8052 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8053 |
1.1 2.2 3.3 |
|
| 8056 |
1.1 2.2 3.3 |
|
| 8060 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8061 |
1.1 2.2 3.3 |
|
| 8063 |
1.1 2.2 3.3 4.4 |
|
| 8064 |
1.1 2.2 3.3 |
|
| 8069 |
1.1 2.2 3.3 4.4 |
|
| 8070 |
1.1 |
|
| 8074 |
1.1 2.2 3.3 |
|
| 8078 |
1.1 2.2 3.3 4.4 |
|
| 8079 |
1.1 2.2 3.3 |
|
| 8081 |
1.1 2.2 3.3 |
|
| 8085 |
1.1 2.2 3.3 4.4 |
|
| 8086 |
1.1 2.2 3.3 |
|
| 8088 |
1.1 2.2 3.3 |
|
| 8092 |
1.1 2.2 3.3 4.4 |
|
| 8093 |
1.1 2.2 3.3 |
|
| 8095 |
1.1 2.2 3.3 |
|
| 8099 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8100 |
1.1 2.2 3.3 |
|
| 8104 |
1.1 2.2 3.3 4.4 |
|
| 8105 |
1.1 |
|
| 8107 |
1.1 2.2 3.3 |
|
| 8111 |
1.1 2.2 3.3 4.4 |
|
| 8112 |
1.1 2.2 3.3 |
|
| 8114 |
1.1 2.2 3.3 |
|
| 8118 |
1.1 2.2 3.3 |
|
| 8124 |
1.1 2.2 3.3 4.4 |
|
| 8125 |
1.1 |
|
| 8126 |
1.1 2.2 3.3 4.4 |
|
| 8127 |
1.1 |
|
| 8128 |
1.1 2.2 3.3 4.4 |
|
| 8129 |
1.1 2.2 3.3 |
|
| 8133 |
1.1 2.2 3.3 |
|
| 8137 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8138 |
1.1 2.2 3.3 |
|
| 8140 |
1.1 2.2 3.3 4.4 |
|
| 8141 |
1.1 2.2 3.3 |
|
| 8143 |
1.1 2.2 3.3 |
|
| 8147 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8148 |
1.1 2.2 3.3 |
|
| 8150 |
1.1 2.2 3.3 4.4 |
|
| 8151 |
1.1 2.2 3.3 |
|
| 8156 |
1.1 2.2 3.3 4.4 |
|
| 8157 |
1.1 |
|
| 8161 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8162 |
1.1 2.2 3.3 |
|
| 8164 |
1.1 2.2 3.3 |
|
| 8168 |
1.1 2.2 3.3 |
|
| 8172 |
1.1 2.2 3.3 4.4 |
|
| 8173 |
1.1 2.2 3.3 |
|
| 8175 |
1.1 2.2 3.3 |
|
| 8181 |
1.1 2.2 |
|
| 8182 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 |
|
| 8184 |
1.1 2.2 |
|
| 8185 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 8186 |
1.1 2.2 3.3 |
|
| 8188 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8189 |
1.1 2.2 3.3 |
|
| 8191 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8192 |
1.1 2.2 3.3 |
|
| 8194 |
1.1 2.2 3.3 |
|
| 8198 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8199 |
1.1 2.2 3.3 |
|
| 8203 |
1.1 2.2 3.3 4.4 |
|
| 8204 |
1.1 |
|
| 8207 |
1.1 2.2 3.3 4.4 |
|
| 8208 |
1.1 |
|
| 8210 |
1.1 2.2 3.3 |
|
| 8214 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8215 |
1.1 2.2 3.3 |
|
| 8220 |
1.1 2.2 3.3 4.4 |
|
| 8221 |
1.1 |
|
| 8225 |
1.1 2.2 3.3 |
|
| 8229 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8230 |
1.1 2.2 3.3 |
|
| 8232 |
1.1 2.2 3.3 4.4 |
|
| 8233 |
1.1 2.2 3.3 |
|
| 8238 |
1.1 2.2 3.3 4.4 |
|
| 8239 |
1.1 |
|
| 8244 |
1.1 2.2 3.3 4.4 |
|
| 8245 |
1.1 |
|
| 8247 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8248 |
1.1 2.2 3.3 |
|
| 8250 |
1.1 2.2 3.3 |
|
| 8256 |
1.1 2.2 |
|
| 8257 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 |
|
| 8259 |
1.1 2.2 |
|
| 8260 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 |
|
| 8261 |
1.1 2.2 3.3 |
|
| 8263 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8264 |
1.1 2.2 3.3 |
|
| 8266 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8267 |
1.1 2.2 3.3 |
|
| 8269 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8270 |
1.1 2.2 3.3 |
|
| 8272 |
1.1 2.2 3.3 |
|
| 8276 |
1.1 2.2 3.3 4.4 |
|
| 8277 |
1.1 2.2 3.3 |
|
| 8279 |
1.1 2.2 3.3 |
|
| 8283 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8284 |
1.1 2.2 3.3 |
|
| 8286 |
1.1 2.2 3.3 4.4 |
|
| 8287 |
1.1 2.2 3.3 |
|
| 8289 |
1.1 2.2 3.3 |
|
| 8293 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8294 |
1.1 2.2 3.3 |
|
| 8296 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8297 |
1.1 2.2 3.3 |
|
| 8299 |
1.1 2.2 3.3 4.4 |
|
| 8300 |
1.1 2.2 3.3 |
|
| 8302 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8303 |
1.1 2.2 3.3 |
|
| 8305 |
1.1 2.2 3.3 4.4 |
|
| 8306 |
1.1 2.2 3.3 |
|
| 8308 |
1.1 2.2 3.3 |
|
| 8312 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8313 |
1.1 2.2 3.3 |
|
| 8315 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8316 |
1.1 2.2 3.3 |
|
| 8320 |
1.1 2.2 3.3 4.4 |
|
| 8321 |
1.1 |
|
| 8323 |
1.1 2.2 3.3 4.4 |
|
| 8324 |
1.1 2.2 3.3 |
|
| 8326 |
1.1 2.2 3.3 |
|
| 8330 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8331 |
1.1 2.2 3.3 |
|
| 8333 |
1.1 2.2 3.3 4.4 |
|
| 8334 |
1.1 2.2 3.3 |
|
| 8339 |
1.1 2.2 3.3 4.4 |
|
| 8340 |
1.1 |
|
| 8345 |
1.1 2.2 3.3 4.4 |
|
| 8346 |
1.1 |
|
| 8348 |
1.1 2.2 3.3 |
|
| 8352 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8353 |
1.1 2.2 3.3 |
|
| 8355 |
1.1 2.2 3.3 4.4 |
|
| 8356 |
1.1 2.2 3.3 |
|
| 8358 |
1.1 2.2 3.3 |
|
| 8362 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8363 |
1.1 2.2 3.3 |
|
| 8365 |
1.1 2.2 3.3 4.4 |
|
| 8366 |
1.1 2.2 3.3 |
|
| 8371 |
1.1 2.2 3.3 4.4 |
|
| 8372 |
1.1 |
|
| 8376 |
1.1 2.2 3.3 |
|
| 8380 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8381 |
1.1 2.2 3.3 |
|
| 8383 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8384 |
1.1 2.2 3.3 |
|
| 8386 |
1.1 2.2 3.3 4.4 |
|
| 8387 |
1.1 2.2 3.3 |
|
| 8389 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8390 |
1.1 2.2 3.3 |
|
| 8392 |
1.1 2.2 3.3 4.4 |
|
| 8393 |
1.1 2.2 3.3 |
|
| 8395 |
1.1 2.2 3.3 |
|
| 8399 |
1.1 2.2 3.3 4.4 |
|
| 8400 |
1.1 2.2 3.3 |
|
| 8402 |
1.1 2.2 3.3 |
|
| 8406 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8407 |
1.1 2.2 3.3 |
|
| 8409 |
1.1 2.2 3.3 4.4 |
|
| 8410 |
1.1 2.2 3.3 |
|
| 8412 |
1.1 2.2 3.3 |
|
| 8416 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8417 |
1.1 2.2 3.3 |
|
| 8419 |
1.1 2.2 3.3 4.4 |
|
| 8420 |
1.1 2.2 3.3 |
|
| 8422 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8423 |
1.1 2.2 3.3 |
|
| 8425 |
1.1 2.2 3.3 |
|
| 8429 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8430 |
1.1 2.2 3.3 |
|
| 8432 |
1.1 2.2 3.3 4.4 |
|
| 8433 |
1.1 2.2 3.3 |
|
| 8438 |
1.1 2.2 3.3 4.4 |
|
| 8439 |
1.1 |
|
| 8443 |
1.1 2.2 3.3 |
|
| 8447 |
1.1 2.2 3.3 4.4 |
|
| 8448 |
1.1 2.2 3.3 |
|
| 8450 |
1.1 2.2 3.3 |
|
| 8454 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8455 |
1.1 2.2 3.3 |
|
| 8457 |
1.1 2.2 3.3 |
|
| 8461 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8462 |
1.1 2.2 3.3 |
|
| 8464 |
1.1 2.2 3.3 4.4 |
|
| 8465 |
1.1 2.2 3.3 |
|
| 8467 |
1.1 2.2 3.3 |
|
| 8471 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8472 |
1.1 2.2 3.3 |
|
| 8476 |
1.1 2.2 3.3 4.4 |
|
| 8477 |
1.1 |
|
| 8479 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8480 |
1.1 2.2 3.3 |
|
| 8482 |
1.1 2.2 3.3 |
|
| 8486 |
1.1 2.2 3.3 4.4 |
|
| 8487 |
1.1 2.2 3.3 |
|
| 8489 |
1.1 2.2 3.3 |
|
| 8493 |
1.1 2.2 3.3 4.4 |
|
| 8494 |
1.1 2.2 3.3 |
|
| 8496 |
1.1 2.2 3.3 |
|
| 8500 |
1.1 2.2 3.3 4.4 |
|
| 8501 |
1.1 2.2 3.3 |
|
| 8503 |
1.1 2.2 3.3 |
|
| 8507 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8508 |
1.1 2.2 3.3 |
|
| 8512 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8513 |
1.1 |
|
| 8515 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8516 |
1.1 2.2 3.3 |
|
| 8518 |
1.1 2.2 3.3 |
|
| 8524 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8525 |
1.1 |
|
| 8526 |
1.1 2.2 3.3 4.4 |
|
| 8527 |
1.1 2.2 3.3 |
|
| 8530 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8531 |
1.1 2.2 3.3 |
|
| 8534 |
1.1 2.2 3.3 4.4 |
|
| 8535 |
1.1 |
|
| 8538 |
1.1 2.2 3.3 4.4 |
|
| 8539 |
1.1 |
|
| 8542 |
1.1 2.2 3.3 4.4 |
|
| 8543 |
1.1 |
|
| 8545 |
1.1 2.2 3.3 4.4 |
|
| 8546 |
1.1 2.2 3.3 |
|
| 8548 |
1.1 2.2 3.3 |
|
| 8552 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8553 |
1.1 2.2 3.3 |
|
| 8557 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8558 |
1.1 |
|
| 8560 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8561 |
1.1 2.2 3.3 |
|
| 8563 |
1.1 2.2 3.3 |
|
| 8567 |
1.1 2.2 3.3 4.4 |
|
| 8568 |
1.1 2.2 3.3 |
|
| 8570 |
1.1 2.2 3.3 |
|
| 8574 |
1.1 2.2 3.3 4.4 |
|
| 8575 |
1.1 2.2 3.3 |
|
| 8577 |
1.1 2.2 3.3 |
|
| 8583 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8584 |
1.1 |
|
| 8586 |
1.1 2.2 3.3 4.4 |
|
| 8587 |
1.1 2.2 3.3 |
|
| 8589 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8590 |
1.1 2.2 3.3 |
|
| 8592 |
1.1 2.2 3.3 |
|
| 8596 |
1.1 2.2 3.3 4.4 |
|
| 8597 |
1.1 2.2 3.3 |
|
| 8602 |
1.1 2.2 3.3 4.4 |
|
| 8603 |
1.1 |
|
| 8607 |
1.1 2.2 3.3 |
|
| 8611 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8612 |
1.1 2.2 3.3 |
|
| 8614 |
1.1 2.2 3.3 4.4 |
|
| 8615 |
1.1 2.2 3.3 |
|
| 8617 |
1.1 2.2 3.3 |
|
| 8621 |
1.1 2.2 3.3 4.4 |
|
| 8622 |
1.1 2.2 3.3 |
|
| 8624 |
1.1 2.2 3.3 |
|
| 8628 |
1.1 2.2 3.3 4.4 |
|
| 8629 |
1.1 2.2 3.3 |
|
| 8631 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8632 |
1.1 2.2 3.3 |
|
| 8634 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8635 |
1.1 2.2 3.3 |
|
| 8637 |
1.1 2.2 3.3 |
|
| 8641 |
1.1 2.2 3.3 4.4 |
|
| 8642 |
1.1 2.2 3.3 |
|
| 8644 |
1.1 2.2 3.3 |
|
| 8650 |
1.1 2.2 3.3 4.4 |
|
| 8651 |
1.1 |
|
| 8652 |
1.1 2.2 3.3 4.4 |
|
| 8653 |
1.1 2.2 3.3 |
|
| 8656 |
1.1 2.2 3.3 |
|
| 8660 |
1.1 2.2 3.3 4.4 |
|
| 8661 |
1.1 2.2 3.3 |
|
| 8663 |
1.1 2.2 3.3 |
|
| 8669 |
1.1 2.2 3.3 4.4 |
|
| 8670 |
1.1 |
|
| 8672 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8673 |
1.1 2.2 3.3 |
|
| 8676 |
1.1 2.2 3.3 4.4 |
|
| 8677 |
1.1 |
|
| 8679 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8680 |
1.1 2.2 3.3 |
|
| 8683 |
1.1 2.2 3.3 4.4 |
|
| 8684 |
1.1 |
|
| 8686 |
1.1 2.2 3.3 |
|
| 8690 |
1.1 2.2 3.3 4.4 |
|
| 8691 |
1.1 2.2 3.3 |
|
| 8693 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8694 |
1.1 2.2 3.3 |
|
| 8696 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8697 |
1.1 2.2 3.3 |
|
| 8699 |
1.1 2.2 3.3 4.4 |
|
| 8700 |
1.1 2.2 3.3 |
|
| 8702 |
1.1 2.2 3.3 |
|
| 8706 |
1.1 2.2 3.3 4.4 |
|
| 8707 |
1.1 2.2 3.3 |
|
| 8709 |
1.1 2.2 3.3 |
|
| 8713 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8714 |
1.1 2.2 3.3 |
|
| 8716 |
1.1 2.2 3.3 |
|
| 8720 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8721 |
1.1 2.2 3.3 |
|
| 8723 |
1.1 2.2 3.3 |
|
| 8727 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8728 |
1.1 2.2 3.3 |
|
| 8730 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8731 |
1.1 2.2 3.3 |
|
| 8735 |
1.1 2.2 3.3 4.4 |
|
| 8736 |
1.1 |
|
| 8737 |
1.1 2.2 3.3 4.4 |
|
| 8738 |
1.1 2.2 3.3 |
|
| 8741 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8742 |
1.1 2.2 3.3 |
|
| 8744 |
1.1 2.2 3.3 4.4 |
|
| 8745 |
1.1 2.2 3.3 |
|
| 8747 |
1.1 2.2 3.3 |
|
| 8751 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8752 |
1.1 2.2 3.3 |
|
| 8754 |
1.1 2.2 3.3 |
|
| 8758 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8759 |
1.1 2.2 3.3 |
|
| 8761 |
1.1 2.2 3.3 |
|
| 8765 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8766 |
1.1 2.2 3.3 |
|
| 8768 |
1.1 2.2 3.3 |
|
| 8772 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8773 |
1.1 2.2 3.3 |
|
| 8775 |
1.1 2.2 3.3 4.4 |
|
| 8776 |
1.1 2.2 3.3 |
|
| 8778 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8779 |
1.1 2.2 3.3 |
|
| 8781 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8782 |
1.1 2.2 3.3 |
|
| 8784 |
1.1 2.2 3.3 4.4 |
|
| 8785 |
1.1 2.2 3.3 |
|
| 8787 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8788 |
1.1 2.2 3.3 |
|
| 8790 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8791 |
1.1 2.2 3.3 |
|
| 8793 |
1.1 2.2 3.3 |
|
| 8797 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8798 |
1.1 2.2 3.3 |
|
| 8800 |
1.1 2.2 3.3 |
|
| 8804 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8805 |
1.1 2.2 3.3 |
|
| 8807 |
1.1 2.2 3.3 |
|
| 8811 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8812 |
1.1 2.2 3.3 |
|
| 8814 |
1.1 2.2 3.3 |
|
| 8818 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8819 |
1.1 2.2 3.3 |
|
| 8821 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8822 |
1.1 2.2 3.3 |
|
| 8824 |
1.1 2.2 3.3 4.4 |
|
| 8825 |
1.1 2.2 3.3 |
|
| 8827 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8828 |
1.1 2.2 3.3 |
|
| 8830 |
1.1 2.2 3.3 4.4 |
|
| 8831 |
1.1 2.2 3.3 |
|
| 8833 |
1.1 2.2 3.3 |
|
| 8837 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8838 |
1.1 2.2 3.3 |
|
| 8840 |
1.1 2.2 3.3 |
|
| 8844 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8845 |
1.1 2.2 3.3 |
|
| 8847 |
1.1 2.2 3.3 |
|
| 8851 |
1.1 2.2 3.3 4.4 |
|
| 8852 |
1.1 2.2 3.3 |
|
| 8854 |
1.1 2.2 3.3 |
|
| 8858 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8859 |
1.1 2.2 3.3 |
|
| 8861 |
1.1 2.2 3.3 |
|
| 8865 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8866 |
1.1 2.2 3.3 |
|
| 8868 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8869 |
1.1 2.2 3.3 |
|
| 8871 |
1.1 2.2 3.3 4.4 |
|
| 8872 |
1.1 2.2 3.3 |
|
| 8874 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8875 |
1.1 2.2 3.3 |
|
| 8877 |
1.1 2.2 3.3 4.4 |
|
| 8878 |
1.1 2.2 3.3 |
|
| 8882 |
1.1 2.2 3.3 4.4 |
|
| 8883 |
1.1 |
|
| 8885 |
1.1 2.2 3.3 |
|
| 8891 |
1.1 2.2 3.3 4.4 |
|
| 8892 |
1.1 |
|
| 8893 |
1.1 2.2 3.3 4.4 |
|
| 8894 |
1.1 |
|
| 8895 |
1.1 2.2 3.3 4.4 |
|
| 8896 |
1.1 |
|
| 8897 |
1.1 2.2 3.3 4.4 |
|
| 8898 |
1.1 |
|
| 8899 |
1.1 2.2 3.3 4.4 |
|
| 8900 |
1.1 |
|
| 8901 |
1.1 2.2 3.3 4.4 |
|
| 8902 |
1.1 |
|
| 8903 |
1.1 2.2 3.3 4.4 |
|
| 8904 |
1.1 |
|
| 8905 |
1.1 2.2 3.3 4.4 |
|
| 8906 |
1.1 |
|
| 8907 |
1.1 2.2 3.3 4.4 |
|
| 8908 |
1.1 |
|
| 8909 |
1.1 2.2 3.3 4.4 |
|
| 8910 |
1.1 |
|
| 8911 |
1.1 2.2 3.3 4.4 |
|
| 8912 |
1.1 |
|
| 8913 |
1.1 2.2 3.3 4.4 |
|
| 8914 |
1.1 2.2 3.3 |
|
| 8927 |
1.1 2.2 3.3 |
|
| 8934 |
1.1 2.2 3.3 4.4 |
|
| 8935 |
1.1 |
|
| 8939 |
1.1 2.2 3.3 |
|
| 8943 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8944 |
1.1 2.2 3.3 |
|
| 8946 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8947 |
1.1 2.2 3.3 |
|
| 8949 |
1.1 2.2 3.3 |
|
| 8953 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8954 |
1.1 2.2 3.3 |
|
| 8956 |
1.1 2.2 3.3 4.4 |
|
| 8957 |
1.1 2.2 3.3 |
|
| 8959 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8960 |
1.1 2.2 3.3 |
|
| 8962 |
1.1 2.2 3.3 |
|
| 8968 |
1.1 2.2 3.3 4.4 |
|
| 8969 |
1.1 |
|
| 8970 |
1.1 2.2 3.3 4.4 |
|
| 8971 |
1.1 2.2 3.3 |
|
| 8974 |
1.1 2.2 3.3 |
|
| 8978 |
1.1 2.2 3.3 4.4 5.5 |
|
| 8979 |
1.1 2.2 3.3 |
|
| 8981 |
1.1 2.2 3.3 4.4 |
|
| 8982 |
1.1 2.2 3.3 |
|
| 8984 |
1.1 2.2 3.3 |
|
| 8988 |
1.1 2.2 3.3 4.4 |
|
| 8989 |
1.1 2.2 3.3 |
|
| 8994 |
1.1 2.2 3.3 4.4 |
|
| 8995 |
1.1 |
|
| 8999 |
1.1 2.2 3.3 |
|
| 9003 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9004 |
1.1 2.2 3.3 |
|
| 9006 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9007 |
1.1 2.2 3.3 |
|
| 9009 |
1.1 2.2 3.3 4.4 |
|
| 9010 |
1.1 2.2 3.3 |
|
| 9012 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9013 |
1.1 2.2 3.3 |
|
| 9015 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9016 |
1.1 2.2 3.3 |
|
| 9021 |
1.1 2.2 3.3 4.4 |
|
| 9022 |
1.1 |
|
| 9026 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9027 |
1.1 2.2 3.3 |
|
| 9029 |
1.1 2.2 3.3 |
|
| 9033 |
1.1 2.2 3.3 4.4 |
|
| 9034 |
1.1 2.2 3.3 |
|
| 9036 |
1.1 2.2 3.3 4.4 |
|
| 9037 |
1.1 2.2 3.3 |
|
| 9039 |
1.1 2.2 3.3 |
|
| 9045 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9046 |
1.1 |
|
| 9047 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9048 |
1.1 |
|
| 9049 |
1.1 2.2 3.3 4.4 |
|
| 9050 |
1.1 2.2 3.3 |
|
| 9054 |
1.1 2.2 3.3 |
|
| 9058 |
1.1 2.2 3.3 4.4 |
|
| 9059 |
1.1 2.2 3.3 |
|
| 9063 |
1.1 2.2 3.3 4.4 |
|
| 9064 |
1.1 |
|
| 9066 |
1.1 2.2 3.3 |
|
| 9070 |
1.1 2.2 3.3 4.4 |
|
| 9071 |
1.1 2.2 3.3 |
|
| 9073 |
1.1 2.2 3.3 |
|
| 9079 |
1.1 2.2 3.3 4.4 |
|
| 9080 |
1.1 |
|
| 9081 |
1.1 2.2 3.3 4.4 |
|
| 9082 |
1.1 |
|
| 9083 |
1.1 2.2 3.3 4.4 |
|
| 9084 |
1.1 2.2 3.3 |
|
| 9088 |
1.1 2.2 3.3 |
|
| 9092 |
1.1 2.2 3.3 4.4 |
|
| 9093 |
1.1 2.2 3.3 |
|
| 9095 |
1.1 2.2 3.3 |
|
| 9099 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9100 |
1.1 2.2 3.3 |
|
| 9102 |
1.1 2.2 3.3 |
|
| 9108 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9109 |
1.1 |
|
| 9111 |
1.1 2.2 3.3 4.4 |
|
| 9112 |
1.1 2.2 3.3 |
|
| 9114 |
1.1 2.2 3.3 4.4 |
|
| 9115 |
1.1 2.2 3.3 |
|
| 9118 |
1.1 2.2 3.3 4.4 |
|
| 9119 |
1.1 |
|
| 9123 |
1.1 2.2 3.3 |
|
| 9129 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9130 |
1.1 |
|
| 9132 |
1.1 2.2 3.3 4.4 |
|
| 9133 |
1.1 2.2 3.3 |
|
| 9135 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9136 |
1.1 2.2 3.3 |
|
| 9138 |
1.1 2.2 3.3 |
|
| 9142 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9143 |
1.1 2.2 3.3 |
|
| 9145 |
1.1 2.2 3.3 4.4 |
|
| 9146 |
1.1 2.2 3.3 |
|
| 9148 |
1.1 2.2 3.3 |
|
| 9152 |
1.1 2.2 3.3 4.4 |
|
| 9153 |
1.1 2.2 3.3 |
|
| 9155 |
1.1 2.2 3.3 |
|
| 9159 |
1.1 2.2 3.3 4.4 |
|
| 9160 |
1.1 2.2 3.3 |
|
| 9162 |
1.1 2.2 3.3 |
|
| 9166 |
1.1 2.2 3.3 4.4 |
|
| 9167 |
1.1 2.2 3.3 |
|
| 9169 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9170 |
1.1 2.2 3.3 |
|
| 9172 |
1.1 2.2 3.3 |
|
| 9178 |
1.1 2.2 3.3 4.4 |
|
| 9179 |
1.1 |
|
| 9180 |
1.1 2.2 3.3 4.4 |
|
| 9181 |
1.1 |
|
| 9182 |
1.1 2.2 3.3 4.4 |
|
| 9183 |
1.1 2.2 3.3 |
|
| 9187 |
1.1 2.2 3.3 |
|
| 9191 |
1.1 2.2 3.3 4.4 |
|
| 9192 |
1.1 2.2 3.3 |
|
| 9194 |
1.1 2.2 3.3 |
|
| 9198 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9199 |
1.1 2.2 3.3 |
|
| 9204 |
1.1 2.2 3.3 4.4 |
|
| 9205 |
1.1 |
|
| 9209 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9210 |
1.1 2.2 3.3 |
|
| 9212 |
1.1 2.2 3.3 |
|
| 9216 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9217 |
1.1 2.2 3.3 |
|
| 9219 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9220 |
1.1 2.2 3.3 |
|
| 9222 |
1.1 2.2 3.3 4.4 |
|
| 9223 |
1.1 2.2 3.3 |
|
| 9225 |
1.1 2.2 3.3 |
|
| 9229 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9230 |
1.1 2.2 3.3 |
|
| 9232 |
1.1 2.2 3.3 4.4 |
|
| 9233 |
1.1 2.2 3.3 |
|
| 9237 |
1.1 2.2 3.3 4.4 |
|
| 9238 |
1.1 |
|
| 9240 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9241 |
1.1 2.2 3.3 |
|
| 9243 |
1.1 2.2 3.3 |
|
| 9247 |
1.1 2.2 3.3 4.4 |
|
| 9248 |
1.1 2.2 3.3 |
|
| 9250 |
1.1 2.2 3.3 |
|
| 9254 |
1.1 2.2 3.3 4.4 |
|
| 9255 |
1.1 2.2 3.3 |
|
| 9257 |
1.1 2.2 3.3 |
|
| 9261 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9262 |
1.1 2.2 3.3 |
|
| 9264 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9265 |
1.1 2.2 3.3 |
|
| 9267 |
1.1 2.2 3.3 |
|
| 9271 |
1.1 2.2 3.3 4.4 |
|
| 9272 |
1.1 2.2 3.3 |
|
| 9274 |
1.1 2.2 3.3 |
|
| 9278 |
1.1 2.2 3.3 4.4 |
|
| 9279 |
1.1 2.2 3.3 |
|
| 9281 |
1.1 2.2 3.3 |
|
| 9285 |
1.1 2.2 3.3 4.4 |
|
| 9286 |
1.1 2.2 3.3 |
|
| 9288 |
1.1 2.2 3.3 |
|
| 9292 |
1.1 2.2 3.3 4.4 |
|
| 9293 |
1.1 2.2 3.3 |
|
| 9295 |
1.1 2.2 3.3 |
|
| 9299 |
1.1 2.2 3.3 4.4 |
|
| 9300 |
1.1 2.2 3.3 |
|
| 9302 |
1.1 2.2 3.3 |
|
| 9306 |
1.1 2.2 3.3 4.4 |
|
| 9307 |
1.1 2.2 3.3 |
|
| 9309 |
1.1 2.2 3.3 |
|
| 9313 |
1.1 2.2 3.3 4.4 |
|
| 9314 |
1.1 2.2 3.3 |
|
| 9316 |
1.1 2.2 3.3 |
|
| 9320 |
1.1 2.2 3.3 4.4 |
|
| 9321 |
1.1 2.2 3.3 |
|
| 9323 |
1.1 2.2 3.3 |
|
| 9327 |
1.1 2.2 3.3 4.4 |
|
| 9328 |
1.1 2.2 3.3 |
|
| 9330 |
1.1 2.2 3.3 |
|
| 9334 |
1.1 2.2 3.3 4.4 |
|
| 9335 |
1.1 2.2 3.3 |
|
| 9337 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9338 |
1.1 2.2 3.3 |
|
| 9340 |
1.1 2.2 3.3 |
|
| 9344 |
1.1 2.2 3.3 4.4 |
|
| 9345 |
1.1 2.2 3.3 |
|
| 9347 |
1.1 2.2 3.3 |
|
| 9351 |
1.1 2.2 3.3 4.4 |
|
| 9352 |
1.1 2.2 3.3 |
|
| 9354 |
1.1 2.2 3.3 |
|
| 9358 |
1.1 2.2 3.3 4.4 |
|
| 9359 |
1.1 2.2 3.3 |
|
| 9361 |
1.1 2.2 3.3 |
|
| 9365 |
1.1 2.2 3.3 4.4 |
|
| 9366 |
1.1 2.2 3.3 |
|
| 9368 |
1.1 2.2 3.3 |
|
| 9372 |
1.1 2.2 3.3 4.4 |
|
| 9373 |
1.1 2.2 3.3 |
|
| 9375 |
1.1 2.2 3.3 |
|
| 9381 |
1.1 2.2 3.3 4.4 |
|
| 9382 |
1.1 |
|
| 9383 |
1.1 2.2 3.3 4.4 |
|
| 9384 |
1.1 |
|
| 9385 |
1.1 2.2 3.3 4.4 |
|
| 9386 |
1.1 |
|
| 9387 |
1.1 2.2 3.3 4.4 |
|
| 9388 |
1.1 |
|
| 9389 |
1.1 2.2 3.3 4.4 |
|
| 9390 |
1.1 |
|
| 9391 |
1.1 2.2 3.3 4.4 |
|
| 9392 |
1.1 |
|
| 9393 |
1.1 2.2 3.3 4.4 |
|
| 9394 |
1.1 |
|
| 9395 |
1.1 2.2 3.3 4.4 |
|
| 9396 |
1.1 |
|
| 9397 |
1.1 2.2 3.3 4.4 |
|
| 9398 |
1.1 |
|
| 9399 |
1.1 2.2 3.3 4.4 |
|
| 9400 |
1.1 |
|
| 9401 |
1.1 2.2 3.3 4.4 |
|
| 9402 |
1.1 |
|
| 9403 |
1.1 2.2 3.3 4.4 |
|
| 9404 |
1.1 |
|
| 9405 |
1.1 2.2 3.3 4.4 |
|
| 9406 |
1.1 |
|
| 9407 |
1.1 2.2 3.3 4.4 |
|
| 9408 |
1.1 |
|
| 9410 |
1.1 2.2 3.3 4.4 |
|
| 9411 |
1.1 |
|
| 9413 |
1.1 2.2 3.3 4.4 |
|
| 9415 |
1.1 2.2 3.3 |
|
| 9432 |
1.1 2.2 3.3 |
|
| 9436 |
1.1 2.2 3.3 4.4 |
|
| 9437 |
1.1 2.2 3.3 |
|
| 9439 |
1.1 2.2 3.3 |
|
| 9443 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9444 |
1.1 2.2 3.3 |
|
| 9446 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9447 |
1.1 2.2 3.3 |
|
| 9449 |
1.1 2.2 3.3 |
|
| 9453 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9454 |
1.1 2.2 3.3 |
|
| 9456 |
1.1 2.2 3.3 4.4 |
|
| 9457 |
1.1 2.2 3.3 |
|
| 9459 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9460 |
1.1 2.2 3.3 |
|
| 9462 |
1.1 2.2 3.3 |
|
| 9467 |
1.1 2.2 3.3 4.4 |
|
| 9468 |
1.1 2.2 3.3 |
|
| 9471 |
1.1 2.2 3.3 4.4 |
|
| 9472 |
1.1 |
|
| 9476 |
1.1 2.2 3.3 4.4 |
|
| 9477 |
1.1 2.2 3.3 |
|
| 9479 |
1.1 2.2 3.3 |
|
| 9484 |
1.1 2.2 3.3 4.4 |
|
| 9485 |
1.1 2.2 3.3 |
|
| 9488 |
1.1 2.2 3.3 4.4 |
|
| 9489 |
1.1 |
|
| 9494 |
1.1 2.2 3.3 4.4 |
|
| 9495 |
1.1 |
|
| 9499 |
1.1 2.2 3.3 |
|
| 9505 |
1.1 2.2 3.3 4.4 |
|
| 9506 |
1.1 |
|
| 9507 |
1.1 2.2 3.3 4.4 |
|
| 9508 |
1.1 2.2 3.3 |
|
| 9511 |
1.1 2.2 3.3 |
|
| 9515 |
1.1 2.2 3.3 4.4 |
|
| 9516 |
1.1 2.2 3.3 |
|
| 9520 |
1.1 2.2 3.3 4.4 |
|
| 9521 |
1.1 |
|
| 9523 |
1.1 2.2 3.3 |
|
| 9527 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9528 |
1.1 2.2 3.3 |
|
| 9530 |
1.1 2.2 3.3 4.4 |
|
| 9531 |
1.1 2.2 3.3 |
|
| 9533 |
1.1 2.2 3.3 |
|
| 9537 |
1.1 2.2 3.3 4.4 |
|
| 9538 |
1.1 2.2 3.3 |
|
| 9540 |
1.1 2.2 3.3 |
|
| 9544 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9545 |
1.1 2.2 3.3 |
|
| 9547 |
1.1 2.2 3.3 4.4 |
|
| 9548 |
1.1 2.2 3.3 |
|
| 9552 |
1.1 2.2 3.3 4.4 |
|
| 9553 |
1.1 |
|
| 9556 |
1.1 2.2 3.3 4.4 |
|
| 9557 |
1.1 |
|
| 9558 |
1.1 2.2 3.3 4.4 |
|
| 9559 |
1.1 2.2 3.3 |
|
| 9562 |
1.1 2.2 3.3 |
|
| 9566 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9567 |
1.1 2.2 3.3 |
|
| 9569 |
1.1 2.2 3.3 4.4 |
|
| 9570 |
1.1 2.2 3.3 |
|
| 9572 |
1.1 2.2 3.3 4.4 |
|
| 9573 |
1.1 2.2 3.3 |
|
| 9575 |
1.1 2.2 3.3 |
|
| 9581 |
1.1 2.2 3.3 4.4 |
|
| 9582 |
1.1 |
|
| 9583 |
1.1 2.2 3.3 4.4 |
|
| 9584 |
1.1 2.2 3.3 |
|
| 9587 |
1.1 2.2 3.3 |
|
| 9591 |
1.1 2.2 3.3 4.4 |
|
| 9592 |
1.1 2.2 3.3 |
|
| 9597 |
1.1 2.2 3.3 4.4 |
|
| 9598 |
1.1 |
|
| 9602 |
1.1 2.2 3.3 |
|
| 9606 |
1.1 2.2 3.3 4.4 |
|
| 9607 |
1.1 2.2 3.3 |
|
| 9609 |
1.1 2.2 3.3 |
|
| 9613 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9614 |
1.1 2.2 3.3 |
|
| 9618 |
1.1 2.2 3.3 4.4 |
|
| 9619 |
1.1 |
|
| 9621 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9622 |
1.1 2.2 3.3 |
|
| 9624 |
1.1 2.2 3.3 |
|
| 9628 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9629 |
1.1 2.2 3.3 |
|
| 9631 |
1.1 2.2 3.3 |
|
| 9637 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9638 |
1.1 |
|
| 9639 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9640 |
1.1 2.2 3.3 |
|
| 9643 |
1.1 2.2 3.3 |
|
| 9647 |
1.1 2.2 3.3 4.4 |
|
| 9648 |
1.1 2.2 3.3 |
|
| 9650 |
1.1 2.2 3.3 |
|
| 9654 |
1.1 2.2 3.3 4.4 |
|
| 9655 |
1.1 2.2 3.3 |
|
| 9657 |
1.1 2.2 3.3 |
|
| 9661 |
1.1 2.2 3.3 4.4 |
|
| 9662 |
1.1 2.2 3.3 |
|
| 9664 |
1.1 2.2 3.3 |
|
| 9670 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9671 |
1.1 |
|
| 9672 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9673 |
1.1 |
|
| 9674 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9675 |
1.1 |
|
| 9676 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9677 |
1.1 |
|
| 9678 |
1.1 2.2 3.3 4.4 |
|
| 9679 |
1.1 |
|
| 9680 |
1.1 2.2 3.3 4.4 |
|
| 9681 |
1.1 2.2 3.3 |
|
| 9688 |
1.1 2.2 3.3 |
|
| 9692 |
1.1 2.2 3.3 4.4 |
|
| 9693 |
1.1 2.2 3.3 |
|
| 9695 |
1.1 2.2 3.3 |
|
| 9699 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9700 |
1.1 2.2 3.3 |
|
| 9702 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9703 |
1.1 2.2 3.3 |
|
| 9705 |
1.1 2.2 3.3 |
|
| 9709 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9710 |
1.1 2.2 3.3 |
|
| 9712 |
1.1 2.2 3.3 4.4 |
|
| 9713 |
1.1 2.2 3.3 |
|
| 9715 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9716 |
1.1 2.2 3.3 |
|
| 9718 |
1.1 2.2 3.3 |
|
| 9722 |
1.1 2.2 3.3 4.4 |
|
| 9723 |
1.1 2.2 3.3 |
|
| 9725 |
1.1 2.2 3.3 |
|
| 9729 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9730 |
1.1 2.2 3.3 |
|
| 9732 |
1.1 2.2 3.3 4.4 |
|
| 9733 |
1.1 2.2 3.3 |
|
| 9735 |
1.1 2.2 3.3 |
|
| 9739 |
1.1 2.2 3.3 4.4 |
|
| 9740 |
1.1 2.2 3.3 |
|
| 9742 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9743 |
1.1 2.2 3.3 |
|
| 9745 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9746 |
1.1 2.2 3.3 |
|
| 9748 |
1.1 2.2 3.3 |
|
| 9752 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9753 |
1.1 2.2 3.3 |
|
| 9755 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9756 |
1.1 2.2 3.3 |
|
| 9758 |
1.1 2.2 3.3 |
|
| 9764 |
1.1 2.2 3.3 4.4 |
|
| 9765 |
1.1 |
|
| 9766 |
1.1 2.2 3.3 4.4 |
|
| 9767 |
1.1 |
|
| 9768 |
1.1 2.2 3.3 4.4 |
|
| 9769 |
1.1 |
|
| 9770 |
1.1 2.2 3.3 4.4 |
|
| 9771 |
1.1 |
|
| 9772 |
1.1 2.2 3.3 4.4 |
|
| 9773 |
1.1 |
|
| 9774 |
1.1 2.2 3.3 4.4 |
|
| 9775 |
1.1 2.2 3.3 |
|
| 9782 |
1.1 2.2 3.3 |
|
| 9786 |
1.1 2.2 3.3 4.4 |
|
| 9787 |
1.1 2.2 3.3 |
|
| 9789 |
1.1 2.2 3.3 |
|
| 9793 |
1.1 2.2 3.3 4.4 |
|
| 9794 |
1.1 2.2 3.3 |
|
| 9796 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9797 |
1.1 2.2 3.3 |
|
| 9799 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9800 |
1.1 2.2 3.3 |
|
| 9802 |
1.1 2.2 3.3 |
|
| 9806 |
1.1 2.2 3.3 4.4 |
|
| 9807 |
1.1 2.2 3.3 |
|
| 9809 |
1.1 2.2 3.3 |
|
| 9813 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9814 |
1.1 2.2 3.3 |
|
| 9816 |
1.1 2.2 3.3 4.4 |
|
| 9817 |
1.1 2.2 3.3 |
|
| 9819 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9820 |
1.1 2.2 3.3 |
|
| 9822 |
1.1 2.2 3.3 |
|
| 9826 |
1.1 2.2 3.3 4.4 |
|
| 9827 |
1.1 2.2 3.3 |
|
| 9829 |
1.1 2.2 3.3 |
|
| 9833 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9834 |
1.1 2.2 3.3 |
|
| 9836 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9837 |
1.1 2.2 3.3 |
|
| 9839 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9840 |
1.1 2.2 3.3 |
|
| 9842 |
1.1 2.2 3.3 |
|
| 9846 |
1.1 2.2 3.3 4.4 |
|
| 9847 |
1.1 2.2 3.3 |
|
| 9849 |
1.1 2.2 3.3 |
|
| 9855 |
1.1 2.2 3.3 4.4 |
|
| 9856 |
1.1 |
|
| 9857 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9858 |
1.1 |
|
| 9859 |
1.1 2.2 3.3 4.4 |
|
| 9860 |
1.1 |
|
| 9861 |
1.1 2.2 3.3 4.4 |
|
| 9862 |
1.1 |
|
| 9863 |
1.1 2.2 3.3 4.4 |
|
| 9864 |
1.1 |
|
| 9865 |
1.1 2.2 3.3 4.4 |
|
| 9866 |
1.1 |
|
| 9867 |
1.1 2.2 3.3 4.4 |
|
| 9868 |
1.1 2.2 3.3 |
|
| 9876 |
1.1 2.2 3.3 |
|
| 9882 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9883 |
1.1 |
|
| 9884 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9885 |
1.1 2.2 3.3 |
|
| 9888 |
1.1 2.2 3.3 |
|
| 9892 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9893 |
1.1 2.2 3.3 |
|
| 9895 |
1.1 2.2 3.3 4.4 |
|
| 9896 |
1.1 2.2 3.3 |
|
| 9898 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9899 |
1.1 2.2 3.3 |
|
| 9901 |
1.1 2.2 3.3 |
|
| 9905 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9906 |
1.1 2.2 3.3 |
|
| 9908 |
1.1 2.2 3.3 4.4 |
|
| 9909 |
1.1 2.2 3.3 |
|
| 9911 |
1.1 2.2 3.3 |
|
| 9915 |
1.1 2.2 3.3 4.4 |
|
| 9916 |
1.1 2.2 3.3 |
|
| 9921 |
1.1 2.2 3.3 4.4 |
|
| 9922 |
1.1 |
|
| 9926 |
1.1 2.2 3.3 |
|
| 9930 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9931 |
1.1 2.2 3.3 |
|
| 9933 |
1.1 2.2 3.3 4.4 |
|
| 9934 |
1.1 2.2 3.3 |
|
| 9936 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9937 |
1.1 2.2 3.3 |
|
| 9939 |
1.1 2.2 3.3 4.4 |
|
| 9940 |
1.1 2.2 3.3 |
|
| 9942 |
1.1 2.2 3.3 |
|
| 9946 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9947 |
1.1 2.2 3.3 |
|
| 9949 |
1.1 2.2 3.3 4.4 |
|
| 9950 |
1.1 2.2 3.3 |
|
| 9952 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9953 |
1.1 2.2 3.3 |
|
| 9955 |
1.1 2.2 3.3 4.4 |
|
| 9956 |
1.1 2.2 3.3 |
|
| 9958 |
1.1 2.2 3.3 |
|
| 9964 |
1.1 2.2 3.3 4.4 |
|
| 9965 |
1.1 |
|
| 9966 |
1.1 2.2 3.3 4.4 |
|
| 9967 |
1.1 2.2 3.3 |
|
| 9970 |
1.1 2.2 3.3 |
|
| 9974 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9975 |
1.1 2.2 3.3 |
|
| 9977 |
1.1 2.2 3.3 4.4 |
|
| 9978 |
1.1 2.2 3.3 |
|
| 9980 |
1.1 2.2 3.3 4.4 5.5 |
|
| 9981 |
1.1 2.2 3.3 |
|
| 9983 |
1.1 2.2 3.3 |
|
| 9987 |
1.1 2.2 3.3 4.4 |
|
| 9988 |
1.1 2.2 3.3 |
|
| 9992 |
1.1 2.2 3.3 4.4 |
|
| 9993 |
1.1 |
|
| 9995 |
1.1 2.2 3.3 |
|
| 9999 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10000 |
1.1 2.2 3.3 |
|
| 10002 |
1.1 2.2 3.3 4.4 |
|
| 10003 |
1.1 2.2 3.3 |
|
| 10005 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10006 |
1.1 2.2 3.3 |
|
| 10010 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10011 |
1.1 |
|
| 10012 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10013 |
1.1 |
|
| 10014 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10015 |
1.1 |
|
| 10016 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10017 |
1.1 |
|
| 10018 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10019 |
1.1 |
|
| 10020 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10021 |
1.1 |
|
| 10022 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10023 |
1.1 |
|
| 10024 |
1.1 2.2 3.3 4.4 |
|
| 10025 |
1.1 2.2 3.3 |
|
| 10034 |
1.1 2.2 3.3 |
|
| 10038 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10039 |
1.1 2.2 3.3 |
|
| 10041 |
1.1 2.2 3.3 4.4 |
|
| 10042 |
1.1 2.2 3.3 |
|
| 10044 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10045 |
1.1 2.2 3.3 |
|
| 10047 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10048 |
1.1 2.2 3.3 |
|
| 10050 |
1.1 2.2 3.3 |
|
| 10054 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10055 |
1.1 2.2 3.3 |
|
| 10057 |
1.1 2.2 3.3 4.4 |
|
| 10058 |
1.1 2.2 3.3 |
|
| 10060 |
1.1 2.2 3.3 |
|
| 10066 |
1.1 2.2 3.3 4.4 |
|
| 10067 |
1.1 |
|
| 10068 |
1.1 2.2 3.3 4.4 |
|
| 10069 |
1.1 |
|
| 10070 |
1.1 2.2 3.3 4.4 |
|
| 10071 |
1.1 2.2 3.3 |
|
| 10075 |
1.1 2.2 3.3 |
|
| 10079 |
1.1 2.2 3.3 4.4 |
|
| 10080 |
1.1 2.2 3.3 |
|
| 10082 |
1.1 2.2 3.3 |
|
| 10086 |
1.1 2.2 3.3 4.4 |
|
| 10087 |
1.1 2.2 3.3 |
|
| 10089 |
1.1 2.2 3.3 |
|
| 10093 |
1.1 2.2 3.3 4.4 |
|
| 10094 |
1.1 2.2 3.3 |
|
| 10096 |
1.1 2.2 3.3 |
|
| 10100 |
1.1 2.2 3.3 4.4 |
|
| 10101 |
1.1 2.2 3.3 |
|
| 10103 |
1.1 2.2 3.3 |
|
| 10109 |
1.1 2.2 3.3 4.4 |
|
| 10110 |
1.1 |
|
| 10111 |
1.1 2.2 3.3 4.4 |
|
| 10112 |
1.1 |
|
| 10113 |
1.1 2.2 3.3 4.4 |
|
| 10114 |
1.1 2.2 3.3 |
|
| 10118 |
1.1 2.2 3.3 |
|
| 10124 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10125 |
1.1 |
|
| 10126 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10127 |
1.1 2.2 3.3 |
|
| 10130 |
1.1 2.2 3.3 4.4 |
|
| 10131 |
1.1 2.2 3.3 |
|
| 10133 |
1.1 2.2 3.3 |
|
| 10137 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10138 |
1.1 2.2 3.3 |
|
| 10140 |
1.1 2.2 3.3 4.4 |
|
| 10141 |
1.1 2.2 3.3 |
|
| 10143 |
1.1 2.2 3.3 |
|
| 10149 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10150 |
1.1 |
|
| 10151 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10152 |
1.1 2.2 3.3 |
|
| 10155 |
1.1 2.2 3.3 4.4 |
|
| 10156 |
1.1 2.2 3.3 |
|
| 10158 |
1.1 2.2 3.3 |
|
| 10162 |
1.1 2.2 3.3 4.4 |
|
| 10163 |
1.1 2.2 3.3 |
|
| 10165 |
1.1 2.2 3.3 |
|
| 10171 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10172 |
1.1 |
|
| 10173 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10174 |
1.1 |
|
| 10175 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10176 |
1.1 2.2 3.3 |
|
| 10180 |
1.1 2.2 3.3 4.4 |
|
| 10181 |
1.1 2.2 3.3 |
|
| 10183 |
1.1 2.2 3.3 |
|
| 10187 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10188 |
1.1 2.2 3.3 |
|
| 10190 |
1.1 2.2 3.3 4.4 |
|
| 10191 |
1.1 2.2 3.3 |
|
| 10193 |
1.1 2.2 3.3 |
|
| 10197 |
1.1 2.2 3.3 4.4 |
|
| 10198 |
1.1 2.2 3.3 |
|
| 10200 |
1.1 2.2 3.3 |
|
| 10206 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10207 |
1.1 |
|
| 10208 |
1.1 2.2 3.3 4.4 |
|
| 10209 |
1.1 |
|
| 10210 |
1.1 2.2 3.3 4.4 |
|
| 10211 |
1.1 2.2 3.3 |
|
| 10215 |
1.1 2.2 3.3 4.4 |
|
| 10216 |
1.1 2.2 3.3 |
|
| 10218 |
1.1 2.2 3.3 |
|
| 10222 |
1.1 2.2 3.3 4.4 |
|
| 10223 |
1.1 2.2 3.3 |
|
| 10225 |
1.1 2.2 3.3 |
|
| 10229 |
1.1 2.2 3.3 4.4 |
|
| 10230 |
1.1 2.2 3.3 |
|
| 10232 |
1.1 2.2 3.3 |
|
| 10238 |
1.1 2.2 3.3 4.4 |
|
| 10239 |
1.1 |
|
| 10240 |
1.1 2.2 3.3 4.4 |
|
| 10241 |
1.1 |
|
| 10242 |
1.1 2.2 3.3 4.4 |
|
| 10243 |
1.1 |
|
| 10244 |
1.1 2.2 3.3 4.4 |
|
| 10245 |
1.1 2.2 3.3 |
|
| 10250 |
1.1 2.2 3.3 |
|
| 10256 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10257 |
1.1 |
|
| 10258 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10259 |
1.1 2.2 3.3 |
|
| 10262 |
1.1 2.2 3.3 4.4 |
|
| 10263 |
1.1 2.2 3.3 |
|
| 10265 |
1.1 2.2 3.3 |
|
| 10271 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10272 |
1.1 |
|
| 10273 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10274 |
1.1 |
|
| 10275 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10276 |
1.1 |
|
| 10277 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10278 |
1.1 2.2 3.3 |
|
| 10283 |
1.1 2.2 3.3 4.4 |
|
| 10284 |
1.1 2.2 3.3 |
|
| 10286 |
1.1 2.2 3.3 |
|
| 10290 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10291 |
1.1 2.2 3.3 |
|
| 10293 |
1.1 2.2 3.3 4.4 |
|
| 10294 |
1.1 2.2 3.3 |
|
| 10296 |
1.1 2.2 3.3 |
|
| 10300 |
1.1 2.2 3.3 4.4 |
|
| 10301 |
1.1 2.2 3.3 |
|
| 10306 |
1.1 2.2 3.3 4.4 |
|
| 10307 |
1.1 |
|
| 10311 |
1.1 2.2 3.3 |
|
| 10317 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10318 |
1.1 |
|
| 10319 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10320 |
1.1 2.2 3.3 |
|
| 10323 |
1.1 2.2 3.3 4.4 |
|
| 10324 |
1.1 2.2 3.3 |
|
| 10326 |
1.1 2.2 3.3 |
|
| 10330 |
1.1 2.2 3.3 4.4 |
|
| 10331 |
1.1 2.2 3.3 |
|
| 10336 |
1.1 2.2 3.3 4.4 |
|
| 10337 |
1.1 |
|
| 10341 |
1.1 2.2 3.3 |
|
| 10345 |
1.1 2.2 3.3 4.4 |
|
| 10346 |
1.1 2.2 3.3 |
|
| 10351 |
1.1 2.2 3.3 4.4 |
|
| 10352 |
1.1 |
|
| 10356 |
1.1 2.2 3.3 |
|
| 10360 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10361 |
1.1 2.2 3.3 |
|
| 10363 |
1.1 2.2 3.3 4.4 |
|
| 10364 |
1.1 2.2 3.3 |
|
| 10366 |
1.1 2.2 3.3 |
|
| 10370 |
1.1 2.2 3.3 4.4 |
|
| 10371 |
1.1 2.2 3.3 |
|
| 10376 |
1.1 2.2 3.3 4.4 |
|
| 10377 |
1.1 |
|
| 10381 |
1.1 2.2 3.3 |
|
| 10385 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10386 |
1.1 2.2 3.3 |
|
| 10388 |
1.1 2.2 3.3 4.4 |
|
| 10389 |
1.1 2.2 3.3 |
|
| 10391 |
1.1 2.2 3.3 |
|
| 10395 |
1.1 2.2 3.3 4.4 |
|
| 10396 |
1.1 2.2 3.3 |
|
| 10400 |
1.1 2.2 3.3 4.4 |
|
| 10401 |
1.1 |
|
| 10403 |
1.1 2.2 3.3 |
|
| 10407 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10408 |
1.1 2.2 3.3 |
|
| 10410 |
1.1 2.2 3.3 4.4 |
|
| 10411 |
1.1 2.2 3.3 |
|
| 10413 |
1.1 2.2 3.3 |
|
| 10417 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10418 |
1.1 2.2 3.3 |
|
| 10420 |
1.1 2.2 3.3 4.4 |
|
| 10421 |
1.1 2.2 3.3 |
|
| 10423 |
1.1 2.2 3.3 |
|
| 10427 |
1.1 2.2 3.3 4.4 |
|
| 10428 |
1.1 2.2 3.3 |
|
| 10433 |
1.1 2.2 3.3 4.4 |
|
| 10434 |
1.1 |
|
| 10438 |
1.1 2.2 3.3 |
|
| 10442 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10443 |
1.1 2.2 3.3 |
|
| 10445 |
1.1 2.2 3.3 4.4 |
|
| 10446 |
1.1 2.2 3.3 |
|
| 10448 |
1.1 2.2 3.3 |
|
| 10452 |
1.1 2.2 3.3 4.4 |
|
| 10453 |
1.1 2.2 3.3 |
|
| 10458 |
1.1 2.2 3.3 4.4 |
|
| 10459 |
1.1 |
|
| 10463 |
1.1 2.2 3.3 |
|
| 10467 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10468 |
1.1 2.2 3.3 |
|
| 10470 |
1.1 2.2 3.3 4.4 |
|
| 10471 |
1.1 2.2 3.3 |
|
| 10473 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10474 |
1.1 2.2 3.3 |
|
| 10476 |
1.1 2.2 3.3 4.4 |
|
| 10477 |
1.1 2.2 3.3 |
|
| 10479 |
1.1 2.2 3.3 |
|
| 10483 |
1.1 2.2 3.3 4.4 |
|
| 10484 |
1.1 2.2 3.3 |
|
| 10489 |
1.1 2.2 3.3 4.4 |
|
| 10490 |
1.1 |
|
| 10494 |
1.1 2.2 3.3 |
|
| 10498 |
1.1 2.2 3.3 4.4 |
|
| 10499 |
1.1 2.2 3.3 |
|
| 10504 |
1.1 2.2 3.3 4.4 |
|
| 10505 |
1.1 |
|
| 10509 |
1.1 2.2 3.3 |
|
| 10513 |
1.1 2.2 3.3 4.4 |
|
| 10514 |
1.1 2.2 3.3 |
|
| 10519 |
1.1 2.2 3.3 4.4 |
|
| 10520 |
1.1 |
|
| 10524 |
1.1 2.2 3.3 |
|
| 10528 |
1.1 2.2 3.3 4.4 |
|
| 10529 |
1.1 2.2 3.3 |
|
| 10534 |
1.1 2.2 3.3 4.4 |
|
| 10535 |
1.1 |
|
| 10539 |
1.1 2.2 3.3 |
|
| 10543 |
1.1 2.2 3.3 4.4 |
|
| 10544 |
1.1 2.2 3.3 |
|
| 10548 |
1.1 2.2 3.3 4.4 |
|
| 10549 |
1.1 |
|
| 10551 |
1.1 2.2 3.3 |
|
| 10557 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10558 |
1.1 |
|
| 10559 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10560 |
1.1 |
|
| 10561 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10562 |
1.1 |
|
| 10563 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10564 |
1.1 |
|
| 10565 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10566 |
1.1 |
|
| 10567 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10568 |
1.1 |
|
| 10569 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10570 |
1.1 |
|
| 10571 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10572 |
1.1 |
|
| 10573 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10574 |
1.1 |
|
| 10575 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10576 |
1.1 |
|
| 10577 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10578 |
1.1 |
|
| 10579 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10580 |
1.1 2.2 3.3 |
|
| 10593 |
1.1 2.2 3.3 |
|
| 10597 |
1.1 2.2 3.3 4.4 |
|
| 10598 |
1.1 2.2 3.3 |
|
| 10600 |
1.1 2.2 3.3 4.4 |
|
| 10601 |
1.1 2.2 3.3 |
|
| 10603 |
1.1 2.2 3.3 |
|
| 10607 |
1.1 2.2 3.3 4.4 |
|
| 10608 |
1.1 2.2 3.3 |
|
| 10612 |
1.1 2.2 3.3 4.4 |
|
| 10613 |
1.1 |
|
| 10615 |
1.1 2.2 3.3 |
|
| 10619 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10620 |
1.1 2.2 3.3 |
|
| 10622 |
1.1 2.2 3.3 4.4 |
|
| 10623 |
1.1 2.2 3.3 |
|
| 10625 |
1.1 2.2 3.3 |
|
| 10629 |
1.1 2.2 3.3 4.4 |
|
| 10630 |
1.1 2.2 3.3 |
|
| 10635 |
1.1 2.2 3.3 4.4 |
|
| 10636 |
1.1 |
|
| 10640 |
1.1 2.2 3.3 |
|
| 10644 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10645 |
1.1 2.2 3.3 |
|
| 10647 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10648 |
1.1 2.2 3.3 |
|
| 10650 |
1.1 2.2 3.3 |
|
| 10654 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10655 |
1.1 2.2 3.3 |
|
| 10660 |
1.1 2.2 3.3 4.4 |
|
| 10661 |
1.1 |
|
| 10665 |
1.1 2.2 3.3 |
|
| 10669 |
1.1 2.2 3.3 4.4 |
|
| 10670 |
1.1 2.2 3.3 |
|
| 10672 |
1.1 2.2 3.3 |
|
| 10678 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10679 |
1.1 |
|
| 10680 |
1.1 2.2 3.3 4.4 |
|
| 10681 |
1.1 2.2 3.3 |
|
| 10684 |
1.1 2.2 3.3 |
|
| 10688 |
1.1 2.2 3.3 4.4 |
|
| 10689 |
1.1 2.2 3.3 |
|
| 10691 |
1.1 2.2 3.3 |
|
| 10697 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10698 |
1.1 |
|
| 10699 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10700 |
1.1 |
|
| 10701 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10702 |
1.1 |
|
| 10703 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10704 |
1.1 |
|
| 10705 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10706 |
1.1 |
|
| 10707 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10708 |
1.1 |
|
| 10709 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10710 |
1.1 |
|
| 10711 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10712 |
1.1 2.2 3.3 |
|
| 10721 |
1.1 2.2 3.3 |
|
| 10725 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10726 |
1.1 2.2 3.3 |
|
| 10728 |
1.1 2.2 3.3 4.4 |
|
| 10729 |
1.1 2.2 3.3 |
|
| 10731 |
1.1 2.2 3.3 |
|
| 10735 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10736 |
1.1 2.2 3.3 |
|
| 10738 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10739 |
1.1 2.2 3.3 |
|
| 10741 |
1.1 2.2 3.3 |
|
| 10745 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10746 |
1.1 2.2 3.3 |
|
| 10748 |
1.1 2.2 3.3 4.4 |
|
| 10749 |
1.1 2.2 3.3 |
|
| 10751 |
1.1 2.2 3.3 |
|
| 10755 |
1.1 2.2 3.3 4.4 |
|
| 10756 |
1.1 2.2 3.3 |
|
| 10758 |
1.1 2.2 3.3 |
|
| 10764 |
1.1 2.2 3.3 4.4 |
|
| 10765 |
1.1 |
|
| 10766 |
1.1 2.2 3.3 4.4 |
|
| 10767 |
1.1 2.2 3.3 |
|
| 10770 |
1.1 2.2 3.3 |
|
| 10774 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10775 |
1.1 2.2 3.3 |
|
| 10777 |
1.1 2.2 3.3 4.4 |
|
| 10778 |
1.1 2.2 3.3 |
|
| 10780 |
1.1 2.2 3.3 |
|
| 10784 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10785 |
1.1 2.2 3.3 |
|
| 10789 |
1.1 2.2 3.3 4.4 |
|
| 10790 |
1.1 |
|
| 10792 |
1.1 2.2 3.3 |
|
| 10796 |
1.1 2.2 3.3 4.4 |
|
| 10797 |
1.1 2.2 3.3 |
|
| 10799 |
1.1 2.2 3.3 |
|
| 10803 |
1.1 2.2 3.3 4.4 |
|
| 10804 |
1.1 2.2 3.3 |
|
| 10806 |
1.1 2.2 3.3 |
|
| 10812 |
1.1 2.2 3.3 4.4 |
|
| 10813 |
1.1 |
|
| 10814 |
1.1 2.2 3.3 4.4 |
|
| 10815 |
1.1 2.2 3.3 |
|
| 10818 |
1.1 2.2 3.3 |
|
| 10822 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10823 |
1.1 2.2 3.3 |
|
| 10825 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10826 |
1.1 2.2 3.3 |
|
| 10828 |
1.1 2.2 3.3 |
|
| 10832 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10833 |
1.1 2.2 3.3 |
|
| 10835 |
1.1 2.2 3.3 4.4 |
|
| 10836 |
1.1 2.2 3.3 |
|
| 10841 |
1.1 2.2 3.3 4.4 |
|
| 10842 |
1.1 |
|
| 10846 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10847 |
1.1 2.2 3.3 |
|
| 10849 |
1.1 2.2 3.3 |
|
| 10853 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10854 |
1.1 2.2 3.3 |
|
| 10856 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10857 |
1.1 2.2 3.3 |
|
| 10861 |
1.1 2.2 3.3 4.4 |
|
| 10862 |
1.1 |
|
| 10864 |
1.1 2.2 3.3 |
|
| 10868 |
1.1 2.2 3.3 4.4 5.5 |
|
| 10869 |
1.1 2.2 3.3 |
|
| 10873 |
1.1 2.2 3.3 4.4 |
|
| 10874 |
1.1 |
|
| 10877 |
1.1 2.2 3.3 4.4 |
|
| 10878 |
1.1 |
|
| 10882 |
1.1 2.2 3.3 |
|
| 10891 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 10895 |
1.1 2.2 3.3 4.4 |
|
| 10896 |
1.1 2.2 |
|
| 10897 |
1.1 2.2 |
|
| 10898 |
1.1 2.2 |
|
| 10902 |
1.1 2.2 3.3 |
|
| 10903 |
1.1 |
|
| 10904 |
1.1 2.2 |
|
| 10905 |
1.1 2.2 |
|
| 10906 |
1.1 |
|
| 10910 |
1.1 2.2 3.3 4.4 |
|
| 10911 |
1.1 2.2 |
|
| 10912 |
1.1 2.2 |
|
| 10913 |
1.1 2.2 |
|
| 10917 |
1.1 2.2 3.3 |
|
| 10918 |
1.1 |
|
| 10919 |
1.1 2.2 |
|
| 10920 |
1.1 2.2 |
|
| 10921 |
1.1 |
|
| 10925 |
1.1 |
|
| 10926 |
1.1 2.2 |
|
| 10927 |
1.1 2.2 |
|
| 10931 |
1.1 |
|
| 10932 |
1.1 2.2 |
|
| 10933 |
1.1 2.2 |
|
| 10934 |
1.1 |
|
| 10939 |
1.1 2.2 3.3 |
|
| 10940 |
1.1 |
|
| 10942 |
1.1 2.2 3.3 |
|
| 10944 |
1.1 2.2 |
|
| 10947 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 |
|
| 10948 |
1.1 2.2 3.3 |
|
| 10954 |
1.1 2.2 3.3 |
|
| 10956 |
1.1 2.2 |
|
| 10959 |
1.1 2.2 |
|
| 10961 |
1.1 |
|
| 10962 |
1.1 |
|
| 10968 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 10970 |
1.1 2.2 3.3 |
|
| 10971 |
1.1 2.2 3.3 |
|
| 10972 |
1.1 2.2 3.3 |
|
| 10973 |
1.1 2.2 3.3 4.4 |
|
| 10976 |
1.1 2.2 |
|
| 10979 |
1.1 |
|
| 10981 |
1.1 2.2 3.3 |
|
| 10982 |
1.1 2.2 3.3 |
|
| 10984 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 10987 |
1.1 2.2 3.3 |
|
| 10991 |
1.1 2.2 3.3 |
|
| 10992 |
1.1 |
|
| 10994 |
1.1 2.2 3.3 |
|
| 10996 |
1.1 2.2 |
|
| 10997 |
1.1 2.2 |
|
| 11001 |
1.1 2.2 3.3 |
|
| 11002 |
1.1 2.2 3.3 4.4 5.5 6.6 |
|
| 11003 |
1.1 2.2 3.3 |
|
| 11006 |
1.1 2.2 |
|
| 11009 |
1.1 2.2 |
|
| 11013 |
1.1 2.2 3.3 4.4 |
|
| 11014 |
1.1 2.2 3.3 4.4 5.5 |
|
| 11016 |
1.1 2.2 3.3 |
|
| 11023 |
1.1 2.2 3.3 4.4 |
|
| 11024 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 |